diff options
author | Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com> | 2022-02-24 14:55:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-24 14:55:59 (GMT) |
commit | a52d2528a405c1e2bfeb6470cb3313a5338dc45f (patch) | |
tree | c7a8d9c23869de114ba3c5f09a7582e1185b30c4 /Lib/opcode.py | |
parent | 4fccf910738d1442852cb900747e6dccb8fe03ef (diff) | |
download | cpython-a52d2528a405c1e2bfeb6470cb3313a5338dc45f.zip cpython-a52d2528a405c1e2bfeb6470cb3313a5338dc45f.tar.gz cpython-a52d2528a405c1e2bfeb6470cb3313a5338dc45f.tar.bz2 |
bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH-31484)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index 0c859c1..71a9347 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -295,6 +295,7 @@ _specialized_instructions = [ "LOAD_FAST__LOAD_CONST", "LOAD_CONST__LOAD_FAST", "STORE_FAST__STORE_FAST", + "LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE", ] _specialization_stats = [ "success", |