Skip to content

Commit

Permalink
Allow asm goto output operands
Browse files Browse the repository at this point in the history
  • Loading branch information
dspinellis committed Nov 22, 2024
1 parent d7a82e0 commit 79c1222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parse.y
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ assembly_statement:
| GNUC_ASM type_qualifier_list_opt '(' string_literal_list ')' ';'
| GNUC_ASM type_qualifier_list_opt '(' string_literal_list ':' asm_operand_list_opt ':' asm_operand_list_opt ')' ';'
| GNUC_ASM type_qualifier_list_opt '(' string_literal_list ':' asm_operand_list_opt ':' asm_operand_list_opt ':' asm_clobber_list_opt ')' ';'
| GNUC_ASM type_qualifier_list_opt GOTO '(' string_literal_list ':' ':' asm_operand_list_opt ':' asm_clobber_list_opt ':' asm_goto_label_list ')' ';'
| GNUC_ASM type_qualifier_list_opt GOTO '(' string_literal_list ':' asm_operand_list_opt ':' asm_operand_list_opt ':' asm_clobber_list_opt ':' asm_goto_label_list ')' ';'
;

asm_operand_list_opt:
Expand Down

0 comments on commit 79c1222

Please sign in to comment.