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