summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-12-14 14:26:44 (GMT)
committerGitHub <noreply@github.com>2023-12-14 14:26:44 (GMT)
commit6873555955497e9adbc72fc0e38df5261844aafd (patch)
treeeda67dbe91ff5e80a437343651c78c646b519e8a /Python/executor_cases.c.h
parentd9e1b5794a8fade21773d18f91a07f80b55c839c (diff)
downloadcpython-6873555955497e9adbc72fc0e38df5261844aafd.zip
cpython-6873555955497e9adbc72fc0e38df5261844aafd.tar.gz
cpython-6873555955497e9adbc72fc0e38df5261844aafd.tar.bz2
GH-112354: Treat _EXIT_TRACE like an unconditional side exit (GH-113104)
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 14d9dd6..2519a4e 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -3516,7 +3516,7 @@
case _EXIT_TRACE: {
TIER_TWO_ONLY
- GOTO_TIER_ONE();
+ if (1) goto deoptimize;
break;
}