]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Address Chris' review
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Sun, 26 Oct 2025 20:55:44 +0000 (20:55 +0000)
committerKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Sun, 26 Oct 2025 20:55:44 +0000 (20:55 +0000)
Python/ceval_macros.h

index b845544beec6002de34bab0b6f598be627e58930..634b949fa59c37c23cc7c21f986b33a8c61bdaaa 100644 (file)
@@ -88,7 +88,6 @@
 #   define DISPATCH_TABLE instruction_funcptr_handler_table
 #   define TRACING_DISPATCH_TABLE instruction_funcptr_tracing_table
 #   define TARGET(op) Py_PRESERVE_NONE_CC PyObject *_TAIL_CALL_##op(TAIL_CALL_PARAMS)
-#   define TRACING_TARGET(op) Py_PRESERVE_NONE_CC PyObject *_TAIL_CALL_TRACING_##op(TAIL_CALL_PARAMS)
 
 #   define DISPATCH_GOTO() \
         do { \
 #  define DISPATCH_TABLE opcode_targets_table
 #  define TRACING_DISPATCH_TABLE opcode_tracing_targets_table
 #  define TARGET(op) TARGET_##op:
-#  define TRACING_TARGET(op) TARGET_TRACING_##op:
 #  define DISPATCH_GOTO() goto *opcode_targets[opcode]
 #  define DISPATCH_GOTO_NON_TRACING() goto *DISPATCH_TABLE[opcode];
 #  define JUMP_TO_LABEL(name) goto name;