From: Richard Henderson Date: Wed, 1 Nov 2000 08:53:36 +0000 (-0800) Subject: * cppmain.c (scan_buffer): Don't avoid paste for assembly. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a59c77cc6db22a7457e5b365ef3644615b60444;p=gcc.git * cppmain.c (scan_buffer): Don't avoid paste for assembly. From-SVN: r37184 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0e509a9496b..a29f68c5804 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-11-01 Richard Henderson + + * cppmain.c (scan_buffer): Don't avoid paste for assembly. + 2000-11-01 Neil Booth * c-parse.in (_yylex): Remove CPP_BACKSLASH case. diff --git a/gcc/cppmain.c b/gcc/cppmain.c index 3304c154948..ca966fc220e 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -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;