diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-14 13:56:18 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-14 13:56:18 +0000 |
commit | 652b3139b887957087721b384b59b86e662b0a5c (patch) | |
tree | 9e8a30f653fe0373cc5de506dce8b7723a9a14e3 /gcc/c-lex.c | |
parent | 76b8b4bff66a5ce879f508ec22820c550108cf71 (diff) | |
download | gcc-652b3139b887957087721b384b59b86e662b0a5c.tar.gz |
* c-ppoutput.c (cb_line_change): Revert 2003-08-04's change.
* c-lex.c (cb_line_change): Skip line changing whenever
c-ppoutput.c would.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71381 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index c9c69a68be0..2109eff1da9 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -197,8 +197,11 @@ cb_ident (cpp_reader *pfile ATTRIBUTE_UNUSED, lexed token on the line. Used for diagnostic line numbers. */ static void cb_line_change (cpp_reader *pfile ATTRIBUTE_UNUSED, const cpp_token *token, - int parsing_args ATTRIBUTE_UNUSED) + int parsing_args) { + if (token->type == CPP_EOF || parsing_args) + return; + src_lineno = SOURCE_LINE (map, token->line); } |