* cppmain.c (scan_buffer): Don't avoid paste for assembly.

From-SVN: r37184
This commit is contained in:
Richard Henderson 2000-11-01 00:53:36 -08:00 committed by Richard Henderson
parent 6ef3973d17
commit 3a59c77cc6
2 changed files with 7 additions and 1 deletions

View 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.

View 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;