@@ -987,7 +987,7 @@ _PyObjectArray_Free(PyObject **array, PyObject **scratch)
987987/* This setting is reversed below following _PyEval_EvalFrameDefault */
988988#endif
989989
990- #if Py_TAIL_CALL_INTERP
990+ #if _Py_TAIL_CALL_INTERP
991991#include "opcode_targets.h"
992992#include "generated_cases.c.h"
993993#endif
@@ -1019,15 +1019,15 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10191019 check_invalid_reentrancy ();
10201020 CALL_STAT_INC (pyeval_calls );
10211021
1022- #if USE_COMPUTED_GOTOS && !Py_TAIL_CALL_INTERP
1022+ #if USE_COMPUTED_GOTOS && !_Py_TAIL_CALL_INTERP
10231023/* Import the static jump table */
10241024#include "opcode_targets.h"
10251025#endif
10261026
10271027#ifdef Py_STATS
10281028 int lastopcode = 0 ;
10291029#endif
1030- #if !Py_TAIL_CALL_INTERP
1030+ #if !_Py_TAIL_CALL_INTERP
10311031 uint8_t opcode ; /* Current opcode */
10321032 int oparg ; /* Current opcode argument, if any */
10331033 assert (tstate -> current_frame == NULL || tstate -> current_frame -> stackpointer != NULL );
@@ -1099,7 +1099,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
10991099 next_instr = frame -> instr_ptr ;
11001100 monitor_throw (tstate , frame , next_instr );
11011101 stack_pointer = _PyFrame_GetStackPointer (frame );
1102- #if Py_TAIL_CALL_INTERP
1102+ #if _Py_TAIL_CALL_INTERP
11031103# if Py_STATS
11041104 return _TAIL_CALL_error (frame , stack_pointer , tstate , next_instr , 0 , lastopcode );
11051105# else
@@ -1110,7 +1110,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
11101110#endif
11111111 }
11121112
1113- #if Py_TAIL_CALL_INTERP
1113+ #if _Py_TAIL_CALL_INTERP
11141114# if Py_STATS
11151115 return _TAIL_CALL_start_frame (frame , NULL , tstate , NULL , 0 , lastopcode );
11161116# else
0 commit comments