OSDN Git Service

* cppinit.c (is_idchar initializer): Tighten tests for when
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 4 Oct 1999 06:19:02 +0000 (06:19 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 4 Oct 1999 06:19:02 +0000 (06:19 +0000)
        to put the table into initialized memory.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29794 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cppinit.c

index 5401351..3dc292b 100644 (file)
@@ -1,5 +1,8 @@
 Sun Oct  3 14:14:16 1999  Jeffrey A Law  (law@cygnus.com)
 
+       * cppinit.c (is_idchar initializer): Tighten tests for when
+       to put the table into initialized memory.
+
        * ggc-none.c (ggc_alloc_rtvec): An rtvec is an array of rtx,
        not an array of rtunion.
        * gcc-page.c (ggc_alloc_rtvec): Similarly.
index 3d8c088..8cdf728 100644 (file)
@@ -212,7 +212,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
+#if defined __GNUC__ && __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] =