From 571613ee81cdf8adc002a9aa15a35dbfd0ae3ac8 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 2 Jul 2019 21:49:59 -0700 Subject: stmt: Add specific error message for missing inline asm --- stmt.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stmt.c b/stmt.c index 8d45e3c..f7dd0cd 100644 --- a/stmt.c +++ b/stmt.c @@ -280,5 +280,8 @@ stmt(struct func *f, struct scope *s) funcret(f, v); expect(TSEMICOLON, "after 'return' statement"); break; + + case T__ASM__: + error(&tok.loc, "inline assembly is not yet supported"); } } -- cgit v1.2.3