Merge isnan and isnanl into a single source file.
[gnulib.git] / lib / isnanl.c
index 0412c55..9d0c98a 100644 (file)
 
 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
 
-#include <config.h>
-
-#include <float.h>
-#include <string.h>
-
-#define LDBL_EXP_MASK ((LDBL_MAX_EXP - LDBL_MIN_EXP) | 7)
-
-#define NWORDS \
-  ((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
-typedef union { long double value; unsigned int word[NWORDS]; }
-        memory_long_double;
-
-int
-rpl_isnanl (long double x)
-{
-#if defined LDBL_EXPBIT0_WORD && defined LDBL_EXPBIT0_BIT
-  /* Be careful to not do any floating-point operation on x, such as x == x,
-     because x may be a signalling NaN.  */
-  static memory_long_double nan = { 0.0L / 0.0L };
-  static long double plus_inf = 1.0L / 0.0L;
-  static long double minus_inf = -1.0L / 0.0L;
-  memory_long_double m;
-
-  /* A NaN can be recognized through its exponent.  But exclude +Infinity and
-     -Infinity, which have the same exponent.  */
-  m.value = x;
-  if ((((m.word[LDBL_EXPBIT0_WORD] >> LDBL_EXPBIT0_BIT)
-       ^ (nan.word[LDBL_EXPBIT0_WORD] >> LDBL_EXPBIT0_BIT))
-       & LDBL_EXP_MASK)
-      == 0)
-    return (memcmp (&m.value, &plus_inf, sizeof (long double)) != 0
-           && memcmp (&m.value, &minus_inf, sizeof (long double)) != 0);
-  else
-    return 0;
-#else
-  /* The configuration did not find sufficient information.  Give up about
-     the signaling NaNs, handle only the quiet NaNs.  */
-  if (x == x)
-    return 0;
-  else
-    return 1;
-#endif
-}
+#define USE_LONG_DOUBLE
+#include "isnan.c"