From bbcb54a1f40fe283a3503268dd141657598c2623 Mon Sep 17 00:00:00 2001 From: seyko Date: Mon, 27 Apr 2015 16:36:58 +0300 Subject: replace PARSE_FLAG_ASM_COMMENTS with PARSE_FLAG_ASM_FILE after "assign PARSE_FLAG_ASM_COMMENTS only for asm files" functions of this flags are identical --- tccasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tccasm.c') diff --git a/tccasm.c b/tccasm.c index 87ec175..b46ce3d 100644 --- a/tccasm.c +++ b/tccasm.c @@ -747,7 +747,7 @@ static int tcc_assemble_internal(TCCState *s1, int do_preprocess) ch = file->buf_ptr[0]; tok_flags = TOK_FLAG_BOL | TOK_FLAG_BOF; - parse_flags = PARSE_FLAG_ASM_COMMENTS | PARSE_FLAG_ASM_FILE; + parse_flags = PARSE_FLAG_ASM_FILE; if (do_preprocess) parse_flags |= PARSE_FLAG_PREPROCESS; next(); -- cgit v1.3.1