From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Fri, 24 Oct 2025 19:22:16 +0000 (+0100) Subject: fix windows builds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e7b240043806d4c35c91c4699825321ca70f9c9;p=thirdparty%2FPython%2Fcpython.git fix windows builds --- 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: