@@ -779,7 +779,7 @@ _PyObjectArray_Free(PyObject **array, PyObject **scratch)
779779/* This setting is reversed below following _PyEval_EvalFrameDefault */
780780#endif
781781
782- #ifdef Py_TAIL_CALL_INTERP
782+ #if Py_TAIL_CALL_INTERP
783783#include "opcode_targets.h"
784784#include "generated_cases.c.h"
785785#endif
@@ -790,7 +790,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
790790 _Py_EnsureTstateNotNULL (tstate );
791791 CALL_STAT_INC (pyeval_calls );
792792
793- #if USE_COMPUTED_GOTOS && !defined( Py_TAIL_CALL_INTERP )
793+ #if USE_COMPUTED_GOTOS && !Py_TAIL_CALL_INTERP
794794/* Import the static jump table */
795795#include "opcode_targets.h"
796796#endif
@@ -863,7 +863,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
863863 next_instr = frame -> instr_ptr ;
864864 monitor_throw (tstate , frame , next_instr );
865865 stack_pointer = _PyFrame_GetStackPointer (frame );
866- #ifdef Py_TAIL_CALL_INTERP
866+ #if Py_TAIL_CALL_INTERP
867867 return _TAIL_CALL_error (frame , stack_pointer , tstate , next_instr , 0 );
868868#else
869869 goto error ;
@@ -876,7 +876,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
876876 const _PyUOpInstruction * next_uop = NULL ;
877877#endif
878878
879- #ifdef Py_TAIL_CALL_INTERP
879+ #if Py_TAIL_CALL_INTERP
880880 return _TAIL_CALL_start_frame (frame , NULL , tstate , NULL , 0 );
881881#else
882882 goto start_frame ;
0 commit comments