From 5a5c85c6f711132adc498cbd001747d20f3524ee Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Fri, 11 Feb 2000 13:46:37 +0000 Subject: [PATCH] cpphash.c (special_symbol): Remove spurious argument to cpp_lookup. * cpphash.c (special_symbol): Remove spurious argument to cpp_lookup. From-SVN: r31917 --- gcc/ChangeLog | 5 +++++ gcc/cpphash.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5fae27560d6..7ab363902fc 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 7b0bea23f17..5d6e7609210 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