diff options
author | Mark Shannon <mark@hotpy.org> | 2024-05-04 11:11:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 11:11:11 (GMT) |
commit | 1ab6356ebec25f216a0eddbd81225abcb93f2d55 (patch) | |
tree | 86b24ff50b131570819da11ae13ddc9a76a9c6d1 /Python/optimizer.c | |
parent | 00da0afa0d98ce1fae67f7258c7f3db2b81a07e7 (diff) | |
download | cpython-1ab6356ebec25f216a0eddbd81225abcb93f2d55.zip cpython-1ab6356ebec25f216a0eddbd81225abcb93f2d55.tar.gz cpython-1ab6356ebec25f216a0eddbd81225abcb93f2d55.tar.bz2 |
GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 support of calls. (GH-118322)
* Add CALL_PY_GENERAL, CALL_BOUND_METHOD_GENERAL and call CALL_NON_PY_GENERAL specializations.
* Remove CALL_PY_WITH_DEFAULTS specialization
* Use CALL_NON_PY_GENERAL in more cases when otherwise failing to specialize
Diffstat (limited to 'Python/optimizer.c')
-rw-r--r-- | Python/optimizer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/optimizer.c b/Python/optimizer.c index c0e1be9..8be2c0f 100644 --- a/Python/optimizer.c +++ b/Python/optimizer.c @@ -987,6 +987,7 @@ static void make_exit(_PyUOpInstruction *inst, int opcode, int target) { inst->opcode = opcode; inst->oparg = 0; + inst->operand = 0; inst->format = UOP_FORMAT_TARGET; inst->target = target; } |