From: Richard Kenner Date: Tue, 25 Oct 1994 22:39:55 +0000 (-0400) Subject: (rescan): ".." no longer terminates a preprocessing number, since X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fd12bc82dac2d1074f07cd7ce9e94b4cb7017d1b;p=gcc.git (rescan): ".." no longer terminates a preprocessing number, since that's incompatible with the C standard. From-SVN: r8339 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index 7f3613d874d..5901f5f362f 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -2934,9 +2934,7 @@ do { ip = &instack[indepth]; \ ibp += 2; } c = *ibp++; - /* ".." terminates a preprocessing number. This is useless for C - code but useful for preprocessing other things. */ - if (!isalnum (c) && (c != '.' || *ibp == '.') && c != '_') { + if (!is_idchar[c] && c != '.') { --ibp; break; }