summaryrefslogtreecommitdiffstats
path: root/Python/ceval_macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval_macros.h')
-rw-r--r--Python/ceval_macros.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h
index a3606b1..c2550f5 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);