diff options
author | Mark Shannon <mark@hotpy.org> | 2025-01-13 10:30:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-13 10:30:28 (GMT) |
commit | ddd959987c557beaf823b681bf5e5e573ad657ac (patch) | |
tree | e59574d3eb62f94e497f7aecd585bf656ebc984e /Python/opcode_targets.h | |
parent | 29fe8072cf404b891dde9c1d415095edddbe19de (diff) | |
download | cpython-ddd959987c557beaf823b681bf5e5e573ad657ac.zip cpython-ddd959987c557beaf823b681bf5e5e573ad657ac.tar.gz cpython-ddd959987c557beaf823b681bf5e5e573ad657ac.tar.bz2 |
GH-128685: Specialize (rather than quicken) LOAD_CONST into LOAD_CONST_[IM]MORTAL (GH-128708)
Diffstat (limited to 'Python/opcode_targets.h')
-rw-r--r-- | Python/opcode_targets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h index 00d55d3..c5c008f 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -207,6 +207,7 @@ static void *opcode_targets[256] = { &&TARGET_LOAD_ATTR_SLOT, &&TARGET_LOAD_ATTR_WITH_HINT, &&TARGET_LOAD_CONST_IMMORTAL, + &&TARGET_LOAD_CONST_MORTAL, &&TARGET_LOAD_GLOBAL_BUILTIN, &&TARGET_LOAD_GLOBAL_MODULE, &&TARGET_LOAD_SUPER_ATTR_ATTR, @@ -233,7 +234,6 @@ static void *opcode_targets[256] = { &&_unknown_opcode, &&_unknown_opcode, &&_unknown_opcode, - &&_unknown_opcode, &&TARGET_INSTRUMENTED_END_FOR, &&TARGET_INSTRUMENTED_POP_ITER, &&TARGET_INSTRUMENTED_END_SEND, |