diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cpplib.c | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae4f40a..8845a4d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-03-24 Alexandre Oliva <aoliva@redhat.com> + + PR preprocessor/14438 + * cpplib.c (do_pragma): Remove line_change call after pragma + handler. + 2004-03-23 Ian Lance Taylor <ian@wasabisystems.com> * doc/extend.texi (ARM Built-in Functions): Replace with correct diff --git a/gcc/cpplib.c b/gcc/cpplib.c index f2556b3..80adfb8 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -1164,9 +1164,6 @@ do_pragma (cpp_reader *pfile) if (pfile->cb.line_change) (*pfile->cb.line_change) (pfile, pragma_token, false); (*p->u.handler) (pfile); - if (pfile->cb.line_change) - (*pfile->cb.line_change) (pfile, pfile->cur_token, false); - } else if (pfile->cb.def_pragma) { |