From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Sun, 26 Oct 2025 20:55:44 +0000 (+0000) Subject: Address Chris' review X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9cc799983e9982c2e655a68dae8da275d2c71b65;p=thirdparty%2FPython%2Fcpython.git Address Chris' review --- diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h index b845544beec6..634b949fa59c 100644 --- a/Python/ceval_macros.h +++ b/Python/ceval_macros.h @@ -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 { \ @@ -119,7 +118,6 @@ # 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;