summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2023-12-20 15:09:12 (GMT)
committerGitHub <noreply@github.com>2023-12-20 15:09:12 (GMT)
commitde8a4e52a5f5e5f0c5057afd4c391afccfca57d3 (patch)
tree8163483e13adc136f633efbd7148b99f0b1bb9de /Python
parente96f26083bff31e86c068aa22542e91f38293ea3 (diff)
downloadcpython-de8a4e52a5f5e5f0c5057afd4c391afccfca57d3.zip
cpython-de8a4e52a5f5e5f0c5057afd4c391afccfca57d3.tar.gz
cpython-de8a4e52a5f5e5f0c5057afd4c391afccfca57d3.tar.bz2
GH-111485: Generate `TARGET` table for computed goto dispatch. (GH-113319)
Diffstat (limited to 'Python')
-rw-r--r--Python/opcode_targets.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h
index bcd6ea7..e664e63 100644
--- a/Python/opcode_targets.h
+++ b/Python/opcode_targets.h
@@ -254,4 +254,5 @@ static void *opcode_targets[256] = {
&&TARGET_INSTRUMENTED_POP_JUMP_IF_NONE,
&&TARGET_INSTRUMENTED_POP_JUMP_IF_NOT_NONE,
&&TARGET_INSTRUMENTED_LINE,
- &&_unknown_opcode};
+ &&_unknown_opcode,
+};