aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-12-14 14:26:44 +0000
committerGitHub <noreply@github.com>2023-12-14 14:26:44 +0000
commit6873555955497e9adbc72fc0e38df5261844aafd (patch)
treeeda67dbe91ff5e80a437343651c78c646b519e8a /Python/bytecodes.c
parentd9e1b5794a8fade21773d18f91a07f80b55c839c (diff)
downloadcpython-6873555955497e9adbc72fc0e38df5261844aafd.tar.gz
cpython-6873555955497e9adbc72fc0e38df5261844aafd.zip
GH-112354: Treat _EXIT_TRACE like an unconditional side exit (GH-113104)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index 1ae83422730..68bb15c2b53 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -4027,7 +4027,7 @@ dummy_func(
op(_EXIT_TRACE, (--)) {
TIER_TWO_ONLY
- GOTO_TIER_ONE();
+ DEOPT_IF(1);
}
op(_INSERT, (unused[oparg], top -- top, unused[oparg])) {