]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix JIT builds
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Thu, 23 Oct 2025 23:52:17 +0000 (00:52 +0100)
committerKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Thu, 23 Oct 2025 23:52:17 +0000 (00:52 +0100)
Tools/jit/template.c

index 471e052c2d8d52944bf27140b9513cc3eb59325c..9516d25086231cad5471a189a03ae134a352ec76 100644 (file)
@@ -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 {                \