From a52d2528a405c1e2bfeb6470cb3313a5338dc45f Mon Sep 17 00:00:00 2001 From: Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com> Date: Thu, 24 Feb 2022 09:55:59 -0500 Subject: bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH-31484) --- Python/opcode_targets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/opcode_targets.h') diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h index cf5bdc772e..fac671eb02 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, -- cgit v1.2.1