diff options
author | Ken Jin <kenjin@python.org> | 2025-02-13 02:18:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-13 02:18:36 +0800 |
commit | 1b27f36eb0ef146aa60b261a1cffcc6fd55c0e88 (patch) | |
tree | 49fe3e854b1fc302f31731c936ed067a84294c31 /Python/ceval_macros.h | |
parent | 11bb08e4ec7b546d57b0ab7a8f199747bef6e422 (diff) | |
download | cpython-1b27f36eb0ef146aa60b261a1cffcc6fd55c0e88.tar.gz cpython-1b27f36eb0ef146aa60b261a1cffcc6fd55c0e88.zip |
gh-129819: Allow tier2/JIT and tailcall (GH-129820)
Diffstat (limited to 'Python/ceval_macros.h')
-rw-r--r-- | Python/ceval_macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h index 50e940c1973..2cb78fa80b4 100644 --- a/Python/ceval_macros.h +++ b/Python/ceval_macros.h @@ -397,7 +397,7 @@ do { \ stack_pointer = _PyFrame_GetStackPointer(frame); \ if (next_instr == NULL) { \ next_instr = frame->instr_ptr; \ - goto error; \ + JUMP_TO_LABEL(error); \ } \ DISPATCH(); \ } while (0) |