aboutsummaryrefslogtreecommitdiff
path: root/tcc.h
diff options
context:
space:
mode:
authorseyko <seyko2@gmail.com>2015-04-27 16:36:58 +0300
committerseyko <seyko2@gmail.com>2015-04-27 16:36:58 +0300
commitbbcb54a1f40fe283a3503268dd141657598c2623 (patch)
tree15558514c48db6106c97bdc7cf16181dc00b36b1 /tcc.h
parent2e51f0ee632efb734f4942f7db073d021adb5c74 (diff)
downloadtinycc-bbcb54a1f40fe283a3503268dd141657598c2623.tar.gz
tinycc-bbcb54a1f40fe283a3503268dd141657598c2623.tar.bz2
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
Diffstat (limited to 'tcc.h')
-rw-r--r--tcc.h3
1 files changed, 1 insertions, 2 deletions
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);