summaryrefslogtreecommitdiff
path: root/m4/isnanl.m4
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2009-02-26 20:18:42 -0700
committerEric Blake <ebb9@byu.net>2009-02-26 20:50:03 -0700
commitecab4471c7da5d367a62c8db75ee54ed6d948e40 (patch)
tree9a662051fcc81aa770cc5a1a8e9cc5241b3f1c21 /m4/isnanl.m4
parentf7beddb6d03f25560cbce2423ee9d2bcbbfed6e6 (diff)
downloadgnulib-ecab4471c7da5d367a62c8db75ee54ed6d948e40.tar.gz
avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
* tests/nan.h (NaNl): Rewrite as function on Irix, to avoid compilation bug by using runtime conversion. * m4/isfinite.m4 (gl_ISFINITE): Likewise. * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise. * modules/ceill-tests (Files): Use nan.h. * modules/floorl-tests (Files): Likewise. * modules/frexpl-tests (Files): Likewise. * modules/isnanl-tests (Files): Likewise. * modules/ldexpl-tests (Files): Likewise. * modules/roundl-tests (Files): Likewise. * modules/truncl-tests (Files): Likewise. * tests/test-ceill.c (main): Use a working NaN. * tests/test-floorl.c (main): Likewise. * tests/test-frexpl.c (main): Likewise. * tests/test-isnan.c (test_long_double): Likewise. * tests/test-isnanl.h (main): Likewise. * tests/test-ldexpl.h (main): Likewise. * tests/test-roundl.h (main): Likewise. * tests/test-truncl.h (main): Likewise. See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html. Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'm4/isnanl.m4')
-rw-r--r--m4/isnanl.m418
1 files changed, 14 insertions, 4 deletions
diff --git a/m4/isnanl.m4 b/m4/isnanl.m4
index fb63ac4551..e3029f5c91 100644
--- a/m4/isnanl.m4
+++ b/m4/isnanl.m4
@@ -1,4 +1,4 @@
-# isnanl.m4 serial 11
+# isnanl.m4 serial 12
dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -133,20 +133,30 @@ AC_DEFUN([gl_FUNC_ISNANL_WORKS],
((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
typedef union { unsigned int word[NWORDS]; long double value; }
memory_long_double;
+/* On Irix 6.5, gcc 3.4.3 can't compute compile-time NaN, and needs the
+ runtime type conversion. */
+#ifdef __sgi
+static long double NaNl ()
+{
+ double zero = 0.0;
+ return zero / zero;
+}
+#else
+# define NaNl() (0.0L / 0.0L)
+#endif
int main ()
{
memory_long_double m;
unsigned int i;
- /* gcc-3.4.3 on IRIX 6.5 appears to have a problem with this. */
- if (!isnanl (0.0L / 0.0L))
+ if (!isnanl (NaNl ()))
return 1;
/* The isnanl function should be immune against changes in the sign bit and
in the mantissa bits. The xor operation twiddles a bit that can only be
a sign bit or a mantissa bit (since the exponent never extends to
bit 31). */
- m.value = 0.0L / 0.0L;
+ m.value = NaNl ();
m.word[NWORDS / 2] ^= (unsigned int) 1 << (sizeof (unsigned int) * CHAR_BIT - 1);
for (i = 0; i < NWORDS; i++)
m.word[i] |= 1;