From c6dc756d4e6905df8498596f5bd0c5a6aa1c6d24 Mon Sep 17 00:00:00 2001 From: seyko Date: Fri, 15 Apr 2016 17:15:11 +0300 Subject: preprocessor oprtion -C (keep comments) This is done by impression of the pcc -C option. Usual execution path and speed are not changed. --- tccelf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tccelf.c') diff --git a/tccelf.c b/tccelf.c index 196dd65..a09e36a 100644 --- a/tccelf.c +++ b/tccelf.c @@ -3282,7 +3282,7 @@ static int ld_next(TCCState *s1, char *name, int name_size) case '/': minp(); if (ch == '*') { - file->buf_ptr = parse_comment(file->buf_ptr); + file->buf_ptr = parse_comment(file->buf_ptr,0); ch = file->buf_ptr[0]; goto redo; } else { -- cgit v1.3.1