From 3e1c7167d86a2a928cdcb659094aa10bb5550c4c Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Tue, 8 Jun 2021 16:01:34 -0600 Subject: bpo-43693: Un-revert commit f3fa63e. (#26609) This was reverted in GH-26596 (commit 6d518bb) due to some bad memory accesses. * Add the MAKE_CELL opcode. (gh-26396) The memory accesses have been fixed. https://bugs.python.org/issue43693 --- 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 65c03ef0e9..94b2a7c9b6 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -134,12 +134,12 @@ static void *opcode_targets[256] = { &&TARGET_MAKE_FUNCTION, &&TARGET_BUILD_SLICE, &&_unknown_opcode, + &&TARGET_MAKE_CELL, &&TARGET_LOAD_CLOSURE, &&TARGET_LOAD_DEREF, &&TARGET_STORE_DEREF, &&TARGET_DELETE_DEREF, &&_unknown_opcode, - &&_unknown_opcode, &&TARGET_CALL_FUNCTION_KW, &&TARGET_CALL_FUNCTION_EX, &&_unknown_opcode, -- cgit v1.2.1