summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2024-06-24 15:35:10 (GMT)
committerGitHub <noreply@github.com>2024-06-24 15:35:10 (GMT)
commita47abdb45d4f1c3195c324812c33b6ef1d9147da (patch)
treef0629d55ee374ee0ab7a5bfe621a9515c24722a0 /Python/executor_cases.c.h
parentce1064e4c9bcfd673323ad690e60f86e1ab907bb (diff)
downloadcpython-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/executor_cases.c.h')
-rw-r--r--Python/executor_cases.c.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index cdfffcd..8de0309 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -4302,9 +4302,7 @@
}
case _JUMP_TO_TOP: {
- #ifndef _Py_JIT
- next_uop = &current_executor->trace[1];
- #endif
+ JUMP_TO_JUMP_TARGET();
break;
}