diff options
author | Mark Shannon <mark@hotpy.org> | 2023-12-20 15:09:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 15:09:12 (GMT) |
commit | de8a4e52a5f5e5f0c5057afd4c391afccfca57d3 (patch) | |
tree | 8163483e13adc136f633efbd7148b99f0b1bb9de /Python | |
parent | e96f26083bff31e86c068aa22542e91f38293ea3 (diff) | |
download | cpython-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.h | 3 |
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, +}; |