00db10
glibc-rh1293976-2.patch introduced a -Wundef warning related to the
00db10
POWER architecture preprocessor macros.  No upstream patch because
00db10
upstream has fixed the underlying malloc alignment issue on 32-bit POWER
00db10
this portion of the code attempts to work around.
00db10
00db10
diff --git a/malloc/tst-malloc-thread-fail.c b/malloc/tst-malloc-thread-fail.c
00db10
index 7edcd7122fb084b7..5dfb24f5a3154fd7 100644
00db10
--- a/malloc/tst-malloc-thread-fail.c
00db10
+++ b/malloc/tst-malloc-thread-fail.c
00db10
@@ -156,7 +156,7 @@ static void *
00db10
 allocate (void)
00db10
 {
00db10
   struct allocate_result r = allocate_1 ();
00db10
-#if __powerpc__ == 1 && __powerpc64__ == 0
00db10
+#if defined (__powerpc__) == 1 && !defined (__powerpc64__)
00db10
   /* Sourceware bug 6527 on 32-bit POWER.
00db10
      Ignore 16-byte alignment requirement when using malloc, realloc, or
00db10
      calloc, since these functions are known not to provide enough