]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cppinit.c (is_idchar): Only use special initialization for gcc-2.8 and later versions...
authorJeffrey A Law <law@cygnus.com>
Thu, 30 Dec 1999 05:52:51 +0000 (05:52 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 30 Dec 1999 05:52:51 +0000 (22:52 -0700)
        * cppinit.c (is_idchar): Only use special initialization for
        gcc-2.8 and later versions of the compiler.

From-SVN: r31130

gcc/ChangeLog
gcc/cppinit.c

index 8249ccd3d755136775604b25bcab0a8f8300dfd0..0f9841463d6b347ac12a1944e766bc41f09f9aac 100644 (file)
@@ -1,5 +1,8 @@
 Wed Dec 29 22:47:43 1999  Jeffrey A Law  (law@cygnus.com)
 
+       * cppinit.c (is_idchar): Only use special initialization for
+       gcc-2.8 and later versions of the compiler.
+
        Wed Oct 27 01:42:26 1999  Scott Christley  <scottc@net-community.com>
        * sparc.md (call): Don't bound structure return size to 0xfff.
 
index 4fb3ca8d94d93c3dac9ddd6c29b8acb39e3578b5..86e0d68a78fe2fa434ba855edc6255b2643081e5 100644 (file)
@@ -210,7 +210,7 @@ enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
 /* If gcc is in use (stage2/stage3) we can make these tables initialized
    data. */
 #if defined __GNUC__ && (__GNUC__ > 2 \
-                        || (__GNUC__ == 2 && __GNUC_MINOR__ > 6))
+                        || (__GNUC__ == 2 && __GNUC_MINOR__ > 8))
 /* Table to tell if a character is legal as the second or later character
    of a C identifier. */
 U_CHAR is_idchar[256] =