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 /Python/opcode_targets.h | |
| 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 '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 cf5bdc7..fac671e 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -173,7 +173,7 @@ static void *opcode_targets[256] = { &&TARGET_CALL, &&TARGET_KW_NAMES, &&TARGET_STORE_FAST__STORE_FAST, - &&_unknown_opcode, + &&TARGET_LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE, &&_unknown_opcode, &&_unknown_opcode, &&_unknown_opcode, |
