diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-06-08 22:01:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 22:01:34 (GMT) |
commit | 3e1c7167d86a2a928cdcb659094aa10bb5550c4c (patch) | |
tree | b3b071ff5636c7c5edd8d536b8732c6a2259a44c /Python/opcode_targets.h | |
parent | ab36b9f83424a020fbd672f218612e6f19257a32 (diff) | |
download | cpython-3e1c7167d86a2a928cdcb659094aa10bb5550c4c.zip cpython-3e1c7167d86a2a928cdcb659094aa10bb5550c4c.tar.gz cpython-3e1c7167d86a2a928cdcb659094aa10bb5550c4c.tar.bz2 |
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
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 65c03ef..94b2a7c 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, |