diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2024-06-24 15:35:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 15:35:10 (GMT) |
commit | a47abdb45d4f1c3195c324812c33b6ef1d9147da (patch) | |
tree | f0629d55ee374ee0ab7a5bfe621a9515c24722a0 /Python/bytecodes.c | |
parent | ce1064e4c9bcfd673323ad690e60f86e1ab907bb (diff) | |
download | cpython-a47abdb45d4f1c3195c324812c33b6ef1d9147da.zip cpython-a47abdb45d4f1c3195c324812c33b6ef1d9147da.tar.gz cpython-a47abdb45d4f1c3195c324812c33b6ef1d9147da.tar.bz2 |
GH-117062: Make _JUMP_TO_TOP a general absolute jump (GH-120854)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index a6fb862..c00de88 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -4149,9 +4149,7 @@ dummy_func( } op(_JUMP_TO_TOP, (--)) { -#ifndef _Py_JIT - next_uop = ¤t_executor->trace[1]; -#endif + JUMP_TO_JUMP_TARGET(); } tier2 op(_SET_IP, (instr_ptr/4 --)) { |