From f7edb7dd909936f2edcdced3e6c25d8116a4e301 Mon Sep 17 00:00:00 2001 From: VVWVV Date: Tue, 1 Aug 2017 22:35:40 +0300 Subject: [PATCH] Fix asm operator in expressions Signed-off-by: VVWVV --- source/compiler/sc3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/compiler/sc3.c b/source/compiler/sc3.c index 6c7f369..39b604f 100644 --- a/source/compiler/sc3.c +++ b/source/compiler/sc3.c @@ -1454,6 +1454,7 @@ static int hier2(value *lval) if (!matchtoken('{')) error(38); lex(&val,&st); + lval->ident=iEXPRESSION; asm_parse_line(); if (!matchtoken('}')) error(38);