summaryrefslogtreecommitdiffstats
path: root/Python/ceval_macros.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2024-01-18 15:49:50 (GMT)
committerGitHub <noreply@github.com>2024-01-18 15:49:50 (GMT)
commit2ff072f21f20b5c27ed01cb86cc15003509a5c8d (patch)
tree657e75089007a48a8187160da7f2c7941f1c6db7 /Python/ceval_macros.h
parentb8f29b1293f55e12e86a2a039b49b6f9f73851b7 (diff)
downloadcpython-2ff072f21f20b5c27ed01cb86cc15003509a5c8d.zip
cpython-2ff072f21f20b5c27ed01cb86cc15003509a5c8d.tar.gz
cpython-2ff072f21f20b5c27ed01cb86cc15003509a5c8d.tar.bz2
Delete unused macro (GH-114238)
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);