mirror of
https://github.com/python/cpython.git
synced 2026-04-20 02:40:59 +00:00
gh-148171: Convert variadic argument opcodes to leave their arguments on the stack (CALL_BUILTIN_FAST_WITH_KEYWORDS) (#148366)
This commit is contained in:
parent
2b439da972
commit
e872c19922
11 changed files with 87 additions and 60 deletions
|
|
@ -1338,6 +1338,10 @@ dummy_func(void) {
|
|||
}
|
||||
}
|
||||
|
||||
op(_CALL_BUILTIN_FAST_WITH_KEYWORDS, (callable, self_or_null, args[oparg] -- callable, self_or_null, args[oparg])) {
|
||||
callable = sym_new_not_null(ctx);
|
||||
}
|
||||
|
||||
op(_CALL_BUILTIN_O, (callable, self_or_null, args[oparg] -- res, c, s)) {
|
||||
res = sym_new_not_null(ctx);
|
||||
c = callable;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue