diff options
author | Mark Shannon <mark@hotpy.org> | 2023-08-31 11:34:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 11:34:52 +0100 |
commit | 059bd4d299b384d2b434ccb106f91cb4bb03bbb1 (patch) | |
tree | 0d5dfb60b2d62ebbca1a13788fc2ca64d457354c /Python/executor.c | |
parent | 194c6fb85e02ecbb1eedb26601e9d503c4d25174 (diff) | |
download | cpython-059bd4d299b384d2b434ccb106f91cb4bb03bbb1.tar.gz cpython-059bd4d299b384d2b434ccb106f91cb4bb03bbb1.zip |
GH-108614: Remove non-debug uses of `#if TIER_ONE` and `#if TIER_TWO` from `_POP_FRAME` op. (GH-108685)
Diffstat (limited to 'Python/executor.c')
-rw-r--r-- | Python/executor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/executor.c b/Python/executor.c index 0ff5106fe44..9b3262ed416 100644 --- a/Python/executor.c +++ b/Python/executor.c @@ -17,6 +17,7 @@ #include "pycore_sliceobject.h" #include "pycore_uops.h" +#define TIER_TWO 2 #include "ceval_macros.h" @@ -83,7 +84,6 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject OBJECT_STAT_INC(optimization_uops_executed); switch (opcode) { -#define TIER_TWO 2 #include "executor_cases.c.h" default: |