From c5764ed15e4f8ea7a3f4245c31d04dcaa57ddd54 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 12 May 2018 11:43:07 -0400 Subject: [PATCH] allow asm volatile statements --- src/parser/parser.yc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser/parser.yc b/src/parser/parser.yc index 48e8aa8..8458b5e 100644 --- a/src/parser/parser.yc +++ b/src/parser/parser.yc @@ -575,6 +575,7 @@ asm_statement asm_expression : ASM LPAREN string_literals asm_operands RPAREN + | ASM VOLATILE LPAREN string_literals asm_operands RPAREN ; asm_operands