From e8fff006c1e4977c693956a9d74446c8efdd4e10 Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Fri, 24 Oct 2025 00:52:17 +0100 Subject: [PATCH] fix JIT builds --- Tools/jit/template.c | 8 -------- 1 file changed, 8 deletions(-) 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 { \ -- 2.47.3