diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2024-07-26 16:40:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-26 16:40:15 (GMT) |
commit | 64857d849f3079a73367525ce93fd7a463b83908 (patch) | |
tree | 97a3081807cf1697141db03a1fdd6976e2ffc407 /Python/optimizer_cases.c.h | |
parent | db2d8b6db1b56c2bd3802b86f9b76da33e8898d7 (diff) | |
download | cpython-64857d849f3079a73367525ce93fd7a463b83908.zip cpython-64857d849f3079a73367525ce93fd7a463b83908.tar.gz cpython-64857d849f3079a73367525ce93fd7a463b83908.tar.bz2 |
GH-122294: Burn in the addresses of side exits (GH-122295)
Diffstat (limited to 'Python/optimizer_cases.c.h')
-rw-r--r-- | Python/optimizer_cases.c.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 166b167..fae93ce 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -2163,6 +2163,8 @@ } case _EXIT_TRACE: { + PyObject *exit_p = (PyObject *)this_instr->operand; + (void)exit_p; ctx->done = true; break; } |