From: Andreas Jaeger Date: Tue, 7 Aug 2001 17:33:37 +0000 (+0000) Subject: update. X-Git-Tag: cvs/glibc-2_2_4~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5df5186db061b9dba7f45d901f5d03ebfbf143c;p=thirdparty%2Fglibc.git update. * stdlib/tst-strtod.c: Disable HUGE_VAL tests for older GCCs. --- diff --git a/ChangeLog b/ChangeLog index d63b8ec332b..18eead38a65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-08-07 Andreas Jaeger + * stdlib/tst-strtod.c: Disable HUGE_VAL tests for older GCCs. + * iconv/gconv_charset.h (upstr): Add unused attribute to avoid warning. diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c index adf6255f662..afd522b9ccb 100644 --- a/stdlib/tst-strtod.c +++ b/stdlib/tst-strtod.c @@ -65,9 +65,12 @@ static const struct ltest tests[] = { "0x0.8p-1022", 1.11253692925360069154511635866620203210960799023116591527666e-308, '\0', 0 }, +#if __GNUC_PREREQ(2,96) + /* For older GCC release HUGE_VAL is not a constant. */ { "Inf", HUGE_VAL, '\0', 0 }, { "-Inf", -HUGE_VAL, '\0', 0 }, { "+InFiNiTy", HUGE_VAL, '\0', 0 }, +#endif { NULL, 0, '\0', 0 } };