From 059bd4d299b384d2b434ccb106f91cb4bb03bbb1 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Thu, 31 Aug 2023 11:34:52 +0100 Subject: GH-108614: Remove non-debug uses of `#if TIER_ONE` and `#if TIER_TWO` from `_POP_FRAME` op. (GH-108685) --- Python/executor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/executor.c') 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: -- cgit v1.2.3