diff options
Diffstat (limited to 'Python/executor.c')
-rw-r--r-- | Python/executor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/executor.c b/Python/executor.c index 4a18618c0c6..5a571e6da46 100644 --- a/Python/executor.c +++ b/Python/executor.c @@ -81,6 +81,7 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject OBJECT_STAT_INC(optimization_uops_executed); switch (opcode) { +#define TIER_TWO 2 #include "executor_cases.c.h" default: @@ -106,6 +107,7 @@ pop_3_error: pop_2_error: STACK_SHRINK(1); pop_1_error: +pop_1_exit_unwind: STACK_SHRINK(1); error: // On ERROR_IF we return NULL as the frame. |