diff options
author | Yan Yanchii <yyanchiy@gmail.com> | 2024-12-23 22:17:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-24 05:17:47 +0800 |
commit | 30efede33ca1fe32debbae93cc40b0e7e0b133b3 (patch) | |
tree | fd2cc45d05999f85d3caf638659e9a80589e3da2 /Python/optimizer_cases.c.h | |
parent | d61542b5ff1fe64705e5ce1bcc53048f14098dba (diff) | |
download | cpython-30efede33ca1fe32debbae93cc40b0e7e0b133b3.tar.gz cpython-30efede33ca1fe32debbae93cc40b0e7e0b133b3.zip |
gh-128195: Add `_REPLACE_WITH_TRUE` to the tier2 optimizer (GH-128203)
Add `_REPLACE_WITH_TRUE` to the tier2 optimizer
Diffstat (limited to 'Python/optimizer_cases.c.h')
-rw-r--r-- | Python/optimizer_cases.c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index b46079ec8a1..0fcf5e18ed5 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -211,7 +211,7 @@ case _REPLACE_WITH_TRUE: { _Py_UopsSymbol *res; - res = sym_new_not_null(ctx); + res = sym_new_const(ctx, Py_True); stack_pointer[-1] = res; break; } |