* cpplib.c (do_pragma): Remove unnecessary cb_line_change.
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 Sep 2003 00:13:28 +0000 (00:13 +0000)
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 Sep 2003 00:13:28 +0000 (00:13 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71416 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cpplib.c

index 5c00702..dee5ae1 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-15  Alexandre Oliva  <aoliva@redhat.com>
+
+       * cpplib.c (do_pragma): Remove unnecessary cb_line_change.
+
 2003-09-15  Bob Wilson  <bob.wilson@acm.org>
 
        * config/xtensa/xtensa.c (xtensa_multibss_section_type_flags): Add
index 844a5da..6a0f3e0 100644 (file)
@@ -1140,14 +1140,6 @@ do_pragma (cpp_reader *pfile)
        }
     }
 
-  /* FIXME.  This is an awful kludge to get the front ends to update
-     their notion of line number for diagnostic purposes.  The line
-     number should be passed to the handler and they should do it
-     themselves.  Stand-alone CPP must ignore us, otherwise it will
-     prefix the directive with spaces, hence the 1.  Ugh.  */
-  if (pfile->cb.line_change)
-    pfile->cb.line_change (pfile, token, 1);
-
   if (p)
     p->u.handler (pfile);
   else if (pfile->cb.def_pragma)