diff options
Diffstat (limited to 'gcc/c-ppoutput.c')
-rw-r--r-- | gcc/c-ppoutput.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-ppoutput.c b/gcc/c-ppoutput.c index 68b45d2..9642f30 100644 --- a/gcc/c-ppoutput.c +++ b/gcc/c-ppoutput.c @@ -261,9 +261,9 @@ print_line (const struct line_map *map, unsigned int line, const char *special_f of the line, and at end of file will be CPP_EOF. */ static void cb_line_change (cpp_reader *pfile, const cpp_token *token, - int parsing_args ATTRIBUTE_UNUSED) + int parsing_args) { - if (token->type == CPP_EOF) + if (token->type == CPP_EOF || parsing_args) return; maybe_print_line (print.map, token->line); |