@@ -971,7 +971,7 @@ _PyObjectArray_Free(PyObject **array, PyObject **scratch)
971971/* This setting is reversed below following _PyEval_EvalFrameDefault */
972972#endif
973973
974- #if Py_TAIL_CALL_INTERP
974+ #if _Py_TAIL_CALL_INTERP
975975#include "opcode_targets.h"
976976#include "generated_cases.c.h"
977977#endif
@@ -1002,15 +1002,15 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10021002 _Py_EnsureTstateNotNULL (tstate );
10031003 CALL_STAT_INC (pyeval_calls );
10041004
1005- #if USE_COMPUTED_GOTOS && !Py_TAIL_CALL_INTERP
1005+ #if USE_COMPUTED_GOTOS && !_Py_TAIL_CALL_INTERP
10061006/* Import the static jump table */
10071007#include "opcode_targets.h"
10081008#endif
10091009
10101010#ifdef Py_STATS
10111011 int lastopcode = 0 ;
10121012#endif
1013- #if !Py_TAIL_CALL_INTERP
1013+ #if !_Py_TAIL_CALL_INTERP
10141014 uint8_t opcode ; /* Current opcode */
10151015 int oparg ; /* Current opcode argument, if any */
10161016 assert (tstate -> current_frame == NULL || tstate -> current_frame -> stackpointer != NULL );
@@ -1082,7 +1082,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10821082 next_instr = frame -> instr_ptr ;
10831083 monitor_throw (tstate , frame , next_instr );
10841084 stack_pointer = _PyFrame_GetStackPointer (frame );
1085- #if Py_TAIL_CALL_INTERP
1085+ #if _Py_TAIL_CALL_INTERP
10861086# if Py_STATS
10871087 return _TAIL_CALL_error (frame , stack_pointer , tstate , next_instr , 0 , lastopcode );
10881088# else
@@ -1098,7 +1098,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10981098 _PyExecutorObject * current_executor = NULL ;
10991099 const _PyUOpInstruction * next_uop = NULL ;
11001100#endif
1101- #if Py_TAIL_CALL_INTERP
1101+ #if _Py_TAIL_CALL_INTERP
11021102# if Py_STATS
11031103 return _TAIL_CALL_start_frame (frame , NULL , tstate , NULL , 0 , lastopcode );
11041104# else
0 commit comments