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 --- tcc.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tcc.h') diff --git a/tcc.h b/tcc.h index a0b4894..384e8de 100644 --- a/tcc.h +++ b/tcc.h @@ -1150,9 +1150,8 @@ ST_DATA TokenSym **table_ident; #define PARSE_FLAG_LINEFEED 0x0004 /* line feed is returned as a token. line feed is also returned at eof */ -#define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */ +#define PARSE_FLAG_ASM_FILE 0x0008 /* we processing an asm file: '#' can be used for line comment, etc. */ #define PARSE_FLAG_SPACES 0x0010 /* next() returns space tokens (for -E) */ -#define PARSE_FLAG_ASM_FILE 0x0020 /* we processing an asm file */ ST_FUNC TokenSym *tok_alloc(const char *str, int len); ST_FUNC char *get_tok_str(int v, CValue *cv); -- cgit v1.3.1