From: Zack Weinberg Date: Wed, 8 Mar 2000 03:58:12 +0000 (+0000) Subject: * cpphash.c (special_symbol): Fix thinko in previous commit. X-Git-Tag: prereleases/libstdc++-2.92~7813 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=707beebb3d7b232b28ad14af2f55d062c25422de;p=thirdparty%2Fgcc.git * cpphash.c (special_symbol): Fix thinko in previous commit. From-SVN: r32399 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c6cd9a749ba7..4422685941f1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-03-07 Zack Weinberg + + * cpphash.c (special_symbol): Fix thinko in previous commit. + 2000-03-07 Neil Booth * cppexp.c (struct operation, left_shift, right_shift, diff --git a/gcc/cpphash.c b/gcc/cpphash.c index e5c4c7138122..410c9162cb18 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -899,7 +899,7 @@ special_symbol (hp, pfile) while (!ip->nominal_fname && ip != CPP_NULL_BUFFER (pfile)) ip = CPP_PREV_BUFFER (ip); if (ip->system_header_p - && !cpp_lookup (pfile, (const U_CHAR *) "__STRICT_ANSI__", 15)) + && !cpp_defined (pfile, (const U_CHAR *) "__STRICT_ANSI__", 15)) CPP_PUTC_Q (pfile, '0'); else #endif