]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Delete unused macro (GH-114238)
authorMark Shannon <mark@hotpy.org>
Thu, 18 Jan 2024 15:49:50 +0000 (15:49 +0000)
committerGitHub <noreply@github.com>
Thu, 18 Jan 2024 15:49:50 +0000 (15:49 +0000)
Python/ceval_macros.h

index a3606b17b71c62846d2cdd359b54fe45001c1dab..c2550f53ad6eaaa101429ed086e0e822ec63c6fd 100644 (file)
@@ -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);