diff options
author | Ken Jin <kenjin@python.org> | 2025-02-15 19:01:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-15 19:01:24 (GMT) |
commit | 359c7dde3bb074e029686913f531457eb121d1dd (patch) | |
tree | 7e1bde51266af303cc80f8498a6b21c3ff1638b3 /Python/bytecodes.c | |
parent | c26bed1160978fe8b1844878b8123778e47870c6 (diff) | |
download | cpython-359c7dde3bb074e029686913f531457eb121d1dd.zip cpython-359c7dde3bb074e029686913f531457eb121d1dd.tar.gz cpython-359c7dde3bb074e029686913f531457eb121d1dd.tar.bz2 |
gh-129989: Properly disable tailcall interp in configure (GH-129991)
Co-authored-by: Zanie Blue <contact@zanie.dev>
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index b18b007..3f8f711 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -5234,7 +5234,7 @@ dummy_func( } #endif RELOAD_STACK(); -#ifdef Py_TAIL_CALL_INTERP +#if Py_TAIL_CALL_INTERP int opcode; #endif DISPATCH(); @@ -5278,7 +5278,7 @@ dummy_func( assert(!_PyErr_Occurred(tstate)); #endif RELOAD_STACK(); -#ifdef Py_TAIL_CALL_INTERP +#if Py_TAIL_CALL_INTERP int opcode; #endif DISPATCH(); |