From: Alexandre Oliva Date: Mon, 4 Oct 1999 11:11:16 +0000 (+0000) Subject: cppinit.c (is_idchar initializer): Loosen tests to accept gcc 2.>6 and >2. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=712fbcfac44596edcfb54d1771dcc8a91e873468;p=gcc.git cppinit.c (is_idchar initializer): Loosen tests to accept gcc 2.>6 and >2. * cppinit.c (is_idchar initializer): Loosen tests to accept gcc 2.>6 and >2. From-SVN: r29802 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 922e7363af7..f25dc2800eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 4 08:54:12 1999 Alexandre Oliva + + * cppinit.c (is_idchar initializer): Loosen tests to accept + gcc 2.>6 and >2. + Mon Oct 4 02:31:20 1999 Mark Mitchell * mips.md: Define conditional move patterns for floating point diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 8cdf7286534..a30344d86a5 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -212,7 +212,8 @@ 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_MINOR__ > 8 +#if defined __GNUC__ && (__GNUC__ > 2 \ + || (__GNUC__ == 2 && __GNUC_MINOR__ > 6)) /* Table to tell if a character is legal as the second or later character of a C identifier. */ U_CHAR is_idchar[256] =