* cppmacro.c (cpp_get_token): Avoid pasting after a builtin.
authorNeil Booth <neil@daikokuya.demon.co.uk>
Tue, 6 Feb 2001 19:07:27 +0000 (19:07 +0000)
committerNeil Booth <neil@gcc.gnu.org>
Tue, 6 Feb 2001 19:07:27 +0000 (19:07 +0000)
From-SVN: r39498

gcc/ChangeLog
gcc/cppmacro.c

index 9a6c0b7..b53f80a 100644 (file)
@@ -1,3 +1,7 @@
+2001-02-06  Neil Booth  <neil@daikokuya.demon.co.uk>
+
+        * cppmacro.c (cpp_get_token): Avoid pasting after a builtin.
+
 2001-02-06  Mark Mitchell  <mark@codesourcery.com>
 
        * config/rs6000/rs6000.h (ASM_OUTPUT_SYMBOL_REF): Define.
index 8e051a9..3b9f64c 100644 (file)
@@ -965,6 +965,7 @@ cpp_get_token (pfile, token)
          if (node->flags & NODE_BUILTIN)
            {
              builtin_macro (pfile, token);
+             pfile->buffer->saved_flags = AVOID_LPASTE;
              break;
            }