X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-frexp.c;h=0cd08230bed925c422f12704c8b0848b306ffcc8;hb=c7cf9c5005c207ccc24581f0bddb48a5864d443c;hp=2fa15c0bfa51be3d82a1b5ebe2a08816830286a4;hpb=e220635fc952c63b533873f2af39ec76aed4b4e3;p=gnulib.git diff --git a/tests/test-frexp.c b/tests/test-frexp.c index 2fa15c0bf..0cd08230b 100644 --- a/tests/test-frexp.c +++ b/tests/test-frexp.c @@ -24,11 +24,12 @@ #include #include -#include "isnand.h" +#include "isnand-nolibm.h" #include "nan.h" /* Avoid some warnings from "gcc -Wshadow". This file doesn't use the exp() function. */ +#undef exp #define exp exponent #define ASSERT(expr) \ @@ -43,6 +44,10 @@ } \ while (0) +/* HP cc on HP-UX 10.20 has a bug with the constant expression -0.0. + So we use -zero instead. */ +double zero = 0.0; + static double my_ldexp (double x, int d) { @@ -101,7 +106,7 @@ main () { /* Negative zero. */ int exp = -9999; double mantissa; - x = -0.0; + x = -zero; mantissa = frexp (x, &exp); ASSERT (exp == 0); ASSERT (mantissa == x);