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/generated_cases.c.h | |
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/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 1e995b6..6846872 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -2377,10 +2377,10 @@ TIER_ONE_ONLY CHECK_EVAL_BREAKER(); PyCodeObject *code = _PyFrame_GetCode(frame); - _PyExecutorObject *executor = (_PyExecutorObject *)code->co_executors->executors[oparg&255]; + _PyExecutorObject *executor = code->co_executors->executors[oparg & 255]; if (executor->vm_data.valid) { Py_INCREF(executor); - current_executor = (_PyUOpExecutorObject *)executor; + current_executor = executor; GOTO_TIER_TWO(); } else { |