From 31e43cbe5f01cdd5b5ab330ec3040920e8b61a91 Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Tue, 4 Jan 2022 11:38:32 -0800 Subject: bpo-46009: Remove GEN_START (GH-30367) --- Python/opcode_targets.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Python/opcode_targets.h') diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h index a8f1398bfa..e9f1a483b9 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -128,18 +128,18 @@ static void *opcode_targets[256] = { &&TARGET_DELETE_FAST, &&TARGET_JUMP_IF_NOT_EG_MATCH, &&TARGET_STORE_FAST__LOAD_FAST, - &&TARGET_GEN_START, - &&TARGET_RAISE_VARARGS, &&TARGET_LOAD_FAST__LOAD_CONST, + &&TARGET_RAISE_VARARGS, + &&TARGET_LOAD_CONST__LOAD_FAST, &&TARGET_MAKE_FUNCTION, &&TARGET_BUILD_SLICE, - &&TARGET_LOAD_CONST__LOAD_FAST, + &&TARGET_STORE_FAST__STORE_FAST, &&TARGET_MAKE_CELL, &&TARGET_LOAD_CLOSURE, &&TARGET_LOAD_DEREF, &&TARGET_STORE_DEREF, &&TARGET_DELETE_DEREF, - &&TARGET_STORE_FAST__STORE_FAST, + &&_unknown_opcode, &&_unknown_opcode, &&TARGET_CALL_FUNCTION_EX, &&_unknown_opcode, -- cgit v1.2.1