From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Thu, 23 Oct 2025 23:52:17 +0000 (+0100) Subject: fix JIT builds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8fff006c1e4977c693956a9d74446c8efdd4e10;p=thirdparty%2FPython%2Fcpython.git fix JIT builds --- diff --git a/Tools/jit/template.c b/Tools/jit/template.c index 471e052c2d8d..9516d2508623 100644 --- a/Tools/jit/template.c +++ b/Tools/jit/template.c @@ -55,14 +55,6 @@ do { \ __attribute__((musttail)) return jitted(frame, stack_pointer, tstate); \ } while (0) -#undef GOTO_TIER_ONE -#define GOTO_TIER_ONE(TARGET, SHOULD_CONTINUE_TRACING) \ -do { \ - tstate->current_executor = NULL; \ - _PyFrame_SetStackPointer(frame, stack_pointer); \ - return (_Py_CODEUNIT *)(((uintptr_t)(TARGET)) | SHOULD_CONTINUE_TRACING); \ -} while (0) - #undef LOAD_IP #define LOAD_IP(UNUSED) \ do { \