diff options
| author | seyko <seyko2@gmail.com> | 2015-04-10 16:53:29 +0300 |
|---|---|---|
| committer | seyko <seyko2@gmail.com> | 2015-04-10 16:53:29 +0300 |
| commit | d81611b6416a397f69272bffdb90506869e3fce8 (patch) | |
| tree | a3afcc150fd3c3d684a704d97b1abf4406f2a13e /tcc.h | |
| parent | 8037a1ce39730f729b75907d0fa5691412c82e46 (diff) | |
| download | tinycc-d81611b6416a397f69272bffdb90506869e3fce8.tar.gz tinycc-d81611b6416a397f69272bffdb90506869e3fce8.tar.bz2 | |
fix a preprocessor for .S
Lets assume that in *.S files a preprocessor directive
follow '#' char w/o spaces between. Otherwise there is
too many problems with the content of the comments.
Diffstat (limited to 'tcc.h')
| -rw-r--r-- | tcc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1149,6 +1149,7 @@ ST_DATA TokenSym **table_ident; returned at eof */ #define PARSE_FLAG_ASM_COMMENTS 0x0008 /* '#' can be used for line comment */ #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); |
