diff options
| -rw-r--r-- | tccpp.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2393,8 +2393,12 @@ maybe_newline: goto parse_num; } else if (c == '.') { PEEKC(c, p); - if (c != '.') - expect("'.'"); + if (c != '.') { + if ((parse_flags & PARSE_FLAG_ASM_COMMENTS) == 0) + expect("'.'"); + tok = '.'; + break; + } PEEKC(c, p); tok = TOK_DOTS; } else { |
