From: Mark Shannon Date: Wed, 11 Aug 2021 08:25:26 +0000 (+0100) Subject: Add missing DISPATCH() (GH-27715) X-Git-Tag: v3.11.0a1~428 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c174eafc33999b9e773a5ea9561ad38886f1a0e6;p=thirdparty%2FPython%2Fcpython.git Add missing DISPATCH() (GH-27715) --- diff --git a/Python/ceval.c b/Python/ceval.c index f685c79b4cac..104dbe44ecf2 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1583,6 +1583,8 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, InterpreterFrame *frame, int thr } } + DISPATCH(); + tracing_dispatch: { int instr_prev = frame->f_lasti;