]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix windows builds
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Fri, 24 Oct 2025 19:22:16 +0000 (20:22 +0100)
committerKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Fri, 24 Oct 2025 19:22:16 +0000 (20:22 +0100)
Python/ceval_macros.h

index 0d6d5174204d9649fa3499d48ceeb8b9d6576091..af992cc38ebbf263ea397fcf564f689fc67021e3 100644 (file)
 #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: