From fc721923ed86f2b2abf06876c0701a9e6fb7989d Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 11 Feb 2000 13:46:37 +0000 Subject: [PATCH] * cpphash.c (special_symbol): Remove spurious argument to cpp_lookup. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31917 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/cpphash.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5fae275..7ab3639 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-02-11 Nathan Sidwell + + * cpphash.c (special_symbol): Remove spurious argument to + cpp_lookup. + 2000-02-11 Joel Sherrill (joel@OARcorp.com> * configure.in: (i*86-*-rtems*): Swapped elf and coff diff --git a/gcc/cpphash.c b/gcc/cpphash.c index 7b0bea2..5d6e760 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -907,7 +907,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, (U_CHAR *) "__STRICT_ANSI__", 15, -1)) + && !cpp_lookup (pfile, (U_CHAR *) "__STRICT_ANSI__", 15)) CPP_PUTC_Q (pfile, '0'); else #endif -- 2.7.4