From 68b5f08b72e02f62ec787bfbb7aa99bac661daec Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Thu, 18 May 2023 10:08:33 +0100 Subject: GH-104580: Don't cache eval breaker in interpreter (GH-104581) Move eval-breaker to the front of the interpreter state. --- Python/ceval.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index e8534ec6598..df997e1ed28 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -652,7 +652,6 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int // for the big switch below (in combination with the EXTRA_CASES macro). uint8_t opcode; /* Current opcode */ int oparg; /* Current opcode argument, if any */ - _Py_atomic_int * const eval_breaker = &tstate->interp->ceval.eval_breaker; #ifdef LLTRACE int lltrace = 0; #endif -- cgit v1.2.3