Blame SOURCES/coreutils-8.22-ppc64le.patch

522fea
diff -up coreutils-8.22/gnulib-tests/test-isnanl.h.ppc coreutils-8.22/gnulib-tests/test-isnanl.h
522fea
--- coreutils-8.22/gnulib-tests/test-isnanl.h.ppc	2014-06-23 14:01:05.925541920 +0200
522fea
+++ coreutils-8.22/gnulib-tests/test-isnanl.h	2014-06-23 14:01:39.437617584 +0200
522fea
@@ -51,6 +51,15 @@ main ()
522fea
   /* A bit pattern that is different from a Quiet NaN.  With a bit of luck,
522fea
      it's a Signalling NaN.  */
522fea
   {
522fea
+#if defined __powerpc__ && LDBL_MANT_DIG == 106
522fea
+    /* This is PowerPC "double double", a pair of two doubles.  Inf and Nan are
522fea
+       represented as the corresponding 64-bit IEEE values in the first double;
522fea
+       the second is ignored.  Manipulate only the first double.  */
522fea
+    #undef NWORDS
522fea
+    #define NWORDS \
522fea
+      ((sizeof (double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
522fea
+#endif
522fea
+
522fea
     memory_long_double m;
522fea
     m.value = NaNl ();
522fea
 # if LDBL_EXPBIT0_BIT > 0
522fea
diff -up coreutils-8.22/gnulib-tests/test-signbit.c.ppc coreutils-8.22/gnulib-tests/test-signbit.c
522fea
--- coreutils-8.22/gnulib-tests/test-signbit.c.ppc	2013-12-04 15:53:33.000000000 +0100
522fea
+++ coreutils-8.22/gnulib-tests/test-signbit.c	2014-06-23 13:59:20.378307385 +0200
522fea
@@ -151,6 +151,16 @@ test_signbitl ()
522fea
     #define NWORDS \
522fea
       ((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
522fea
     typedef union { long double value; unsigned int word[NWORDS]; } memory_long_double;
522fea
+
522fea
+#if defined __powerpc__ && LDBL_MANT_DIG == 106
522fea
+    /* This is PowerPC "double double", a pair of two doubles.  Inf and Nan are
522fea
+       represented as the corresponding 64-bit IEEE values in the first double;
522fea
+       the second is ignored.  Manipulate only the first double.  */
522fea
+    #undef NWORDS
522fea
+    #define NWORDS \
522fea
+      ((sizeof (double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
522fea
+#endif
522fea
+
522fea
     memory_long_double m;
522fea
     m.value = zerol / zerol;
522fea
 # if LDBL_EXPBIT0_BIT > 0