X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-frexp.c;h=0cd08230bed925c422f12704c8b0848b306ffcc8;hb=c7cf9c5005c207ccc24581f0bddb48a5864d443c;hp=c08056ca6a3b244bb57c45c13d25206e4110191c;hpb=33b602c44df79204ad59f2a3f160e5aae374a971;p=gnulib.git diff --git a/tests/test-frexp.c b/tests/test-frexp.c index c08056ca6..0cd08230b 100644 --- a/tests/test-frexp.c +++ b/tests/test-frexp.c @@ -24,7 +24,7 @@ #include #include -#include "isnand.h" +#include "isnand-nolibm.h" #include "nan.h" /* Avoid some warnings from "gcc -Wshadow". @@ -44,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) { @@ -102,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);