Skip to content

Commit 6f7934b

Browse files
Simplify
1 parent 5aec067 commit 6f7934b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Python/ceval.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -786,11 +786,8 @@ _PyObjectArray_Free(PyObject **array, PyObject **scratch)
786786
static inline PyObject *_TAIL_CALL_shim(TAIL_CALL_PARAMS)
787787
{
788788
opcode = next_instr->op.code;
789-
#ifdef LLTRACE
790-
return (INSTRUCTION_TABLE[opcode])(frame, stack_pointer, tstate, next_instr, opcode, next_instr->op.arg, lltrace);
791-
#else
792-
return (INSTRUCTION_TABLE[opcode])(frame, stack_pointer, tstate, next_instr, opcode, next_instr->op.arg);
793-
#endif
789+
oparg = next_instr->op.arg;
790+
return (INSTRUCTION_TABLE[opcode])(TAIL_CALL_ARGS);
794791
}
795792
#endif
796793

0 commit comments

Comments
 (0)