From 359c7dde3bb074e029686913f531457eb121d1dd Mon Sep 17 00:00:00 2001 From: Ken Jin Date: Sun, 16 Feb 2025 03:01:24 +0800 Subject: gh-129989: Properly disable tailcall interp in configure (GH-129991) Co-authored-by: Zanie Blue --- Python/ceval_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/ceval_macros.h') diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h index 2cb78fa80b4..1bef2b845d0 100644 --- a/Python/ceval_macros.h +++ b/Python/ceval_macros.h @@ -73,7 +73,7 @@ #define TAIL_CALL_PARAMS _PyInterpreterFrame *frame, _PyStackRef *stack_pointer, PyThreadState *tstate, _Py_CODEUNIT *next_instr, int oparg #define TAIL_CALL_ARGS frame, stack_pointer, tstate, next_instr, oparg -#ifdef Py_TAIL_CALL_INTERP +#if Py_TAIL_CALL_INTERP // Note: [[clang::musttail]] works for GCC 15, but not __attribute__((musttail)) at the moment. # define Py_MUSTTAIL [[clang::musttail]] # define Py_PRESERVE_NONE_CC __attribute__((preserve_none)) -- cgit v1.2.3