diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2024-01-12 11:58:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-12 11:58:23 (GMT) |
commit | 30e6cbdba22d946dacc3f2e19c884b2e1891d58c (patch) | |
tree | 50ef18098a02e61c079b8a6c4477496b27b06adf /Python/ceval.c | |
parent | 29e2839cd6af5c90cfd7abe800b045b6dcee0c05 (diff) | |
download | cpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.zip cpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.tar.gz cpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.tar.bz2 |
GH-113860: Get rid of `_PyUOpExecutorObject` (GH-113954)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index b3b542f..49388cd 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -25,7 +25,6 @@ #include "pycore_tuple.h" // _PyTuple_ITEMS() #include "pycore_typeobject.h" // _PySuper_Lookup() #include "pycore_uop_ids.h" // Uops -#include "pycore_uops.h" // _PyUOpExecutorObject #include "pycore_pyerrors.h" #include "pycore_dict.h" @@ -739,7 +738,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int } /* State shared between Tier 1 and Tier 2 interpreter */ - _PyUOpExecutorObject *current_executor = NULL; + _PyExecutorObject *current_executor = NULL; /* Local "register" variables. * These are cached values from the frame and code object. */ |