* cppmain.c (scan_buffer): Don't avoid paste for assembly.
authorRichard Henderson <rth@redhat.com>
Wed, 1 Nov 2000 08:53:36 +0000 (00:53 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 1 Nov 2000 08:53:36 +0000 (00:53 -0800)
From-SVN: r37184

gcc/ChangeLog
gcc/cppmain.c

index 0e509a9496b89bfa2066d8bed918ef22ba87ce65..a29f68c5804c960b409133f73ca24a87531bbec7 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-01  Richard Henderson  <rth@redhat.com>
+
+       * cppmain.c (scan_buffer): Don't avoid paste for assembly.
+
 2000-11-01  Neil Booth  <neilb@earthling.net>
 
        * c-parse.in (_yylex): Remove CPP_BACKSLASH case.
index 3304c154948ef7ded7cc8e49b3e606ba10f7a4d6..ca966fc220e66e6598e4ae6c2a7b4dcc70d84ff2 100644 (file)
@@ -196,7 +196,9 @@ scan_buffer (pfile)
                    putc (' ', print.outf);
                }
            }
-         else if (print.printed && ! (token->flags & PREV_WHITE)
+         else if (print.printed
+                  && ! (token->flags & PREV_WHITE)
+                  && ! CPP_OPTION (pfile, lang_asm)
                   && cpp_avoid_paste (pfile, &tokens[1 - index], token))
            token->flags |= PREV_WHITE;