From 7e7b240043806d4c35c91c4699825321ca70f9c9 Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Fri, 24 Oct 2025 20:22:16 +0100 Subject: [PATCH] fix windows builds --- Python/ceval_macros.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h index 0d6d5174204d..af992cc38ebb 100644 --- a/Python/ceval_macros.h +++ b/Python/ceval_macros.h @@ -128,6 +128,7 @@ #else # define TARGET(op) case op: TARGET_##op: # define DISPATCH_GOTO() goto dispatch_opcode +# define DISPATCH_GOTO_NON_TRACING() goto dispatch_opcode # define JUMP_TO_LABEL(name) goto name; # define JUMP_TO_PREDICTED(name) goto PREDICTED_##name; # define LABEL(name) name: -- 2.47.3