From: Mark Shannon Date: Thu, 18 Jan 2024 15:49:50 +0000 (+0000) Subject: Delete unused macro (GH-114238) X-Git-Tag: v3.13.0a4~427 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ff072f21f20b5c27ed01cb86cc15003509a5c8d;p=thirdparty%2FPython%2Fcpython.git Delete unused macro (GH-114238) --- diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h index a3606b17b71c..c2550f53ad6e 100644 --- a/Python/ceval_macros.h +++ b/Python/ceval_macros.h @@ -382,9 +382,6 @@ static inline void _Py_LeaveRecursiveCallPy(PyThreadState *tstate) { /* There's no STORE_IP(), it's inlined by the code generator. */ -#define STORE_SP() \ -_PyFrame_SetStackPointer(frame, stack_pointer) - #define LOAD_SP() \ stack_pointer = _PyFrame_GetStackPointer(frame);