mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-28 12:35:37 +08:00
(rescan): Insert a space after `.' as well, to prevent accidental token-pasting (e.g.
(rescan): Insert a space after `.' as well, to prevent accidental token-pasting (e.g. `.x' -> `.10'). From-SVN: r13578
This commit is contained in:
parent
b11d179015
commit
cd56d9fe10
@ -3414,9 +3414,9 @@ randomchar:
|
||||
if (!traditional && obp != op->buf) {
|
||||
switch (obp[-1]) {
|
||||
case '!': case '%': case '&': case '*':
|
||||
case '+': case '-': case '/': case ':':
|
||||
case '<': case '=': case '>': case '^':
|
||||
case '|':
|
||||
case '+': case '-': case '.': case '/':
|
||||
case ':': case '<': case '=': case '>':
|
||||
case '^': case '|':
|
||||
/* If we are expanding a macro arg, make a newline marker
|
||||
to separate the tokens. If we are making real output,
|
||||
a plain space will do. */
|
||||
|
Loading…
Reference in New Issue
Block a user