diff options
author | Ken Jin <kenjin@python.org> | 2025-06-24 00:57:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-24 00:57:14 +0800 |
commit | 569fc6870f048cb75469ae3cacb6ebcf5172a10e (patch) | |
tree | 77886385cd62a79bedcbcce9aa622914bc4a9ab5 /Python/optimizer_analysis.c | |
parent | 99712c45ccaab4bbe83eac38d73bab91bf0f4a02 (diff) | |
download | cpython-569fc6870f048cb75469ae3cacb6ebcf5172a10e.tar.gz cpython-569fc6870f048cb75469ae3cacb6ebcf5172a10e.zip |
gh-134584: Specialize POP_TOP by reference and type in JIT (GH-135761)
Diffstat (limited to 'Python/optimizer_analysis.c')
-rw-r--r-- | Python/optimizer_analysis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/optimizer_analysis.c b/Python/optimizer_analysis.c index 8b1a63e3d29..145a8c118d3 100644 --- a/Python/optimizer_analysis.c +++ b/Python/optimizer_analysis.c @@ -345,7 +345,7 @@ remove_globals(_PyInterpreterFrame *frame, _PyUOpInstruction *buffer, #define sym_new_tuple _Py_uop_sym_new_tuple #define sym_tuple_getitem _Py_uop_sym_tuple_getitem #define sym_tuple_length _Py_uop_sym_tuple_length -#define sym_is_immortal _Py_uop_sym_is_immortal +#define sym_is_immortal _Py_uop_symbol_is_immortal #define sym_is_compact_int _Py_uop_sym_is_compact_int #define sym_new_compact_int _Py_uop_sym_new_compact_int #define sym_new_truthiness _Py_uop_sym_new_truthiness |