summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2024-01-12 11:58:23 (GMT)
committerGitHub <noreply@github.com>2024-01-12 11:58:23 (GMT)
commit30e6cbdba22d946dacc3f2e19c884b2e1891d58c (patch)
tree50ef18098a02e61c079b8a6c4477496b27b06adf /Python/executor_cases.c.h
parent29e2839cd6af5c90cfd7abe800b045b6dcee0c05 (diff)
downloadcpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.zip
cpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.tar.gz
cpython-30e6cbdba22d946dacc3f2e19c884b2e1891d58c.tar.bz2
GH-113860: Get rid of `_PyUOpExecutorObject` (GH-113954)
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r--Python/executor_cases.c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index ea4caa9..3ffe416 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -3393,7 +3393,7 @@
case _CHECK_VALIDITY: {
TIER_TWO_ONLY
- if (!current_executor->base.vm_data.valid) goto deoptimize;
+ if (!current_executor->vm_data.valid) goto deoptimize;
break;
}