Blame SOURCES/glibc-rh1505492-undef-34.patch

147e83
commit 3f17b03b0947fbe2482e2776f654056d1d5ba093
147e83
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
147e83
Date:   Tue Jun 24 06:41:46 2014 -0500
147e83
147e83
    PowerPC: Guard CALL_ELF check for ppc64 only in link.h
147e83
    
147e83
    This patch fixes powerpc32 undef compiler warnings for _CALL_ELF,
147e83
    since it is defined only for powerpc64.
147e83
147e83
diff --git a/sysdeps/powerpc/bits/link.h b/sysdeps/powerpc/bits/link.h
147e83
index 6c7867e04353a39e..201d3427dac8aece 100644
147e83
--- a/sysdeps/powerpc/bits/link.h
147e83
+++ b/sysdeps/powerpc/bits/link.h
147e83
@@ -63,7 +63,8 @@ extern unsigned int la_ppc32_gnu_pltexit (Elf32_Sym *__sym,
147e83
 
147e83
 __END_DECLS
147e83
 
147e83
-#elif _CALL_ELF != 2
147e83
+#elif __ELF_NATIVE_CLASS == 64
147e83
+# if _CALL_ELF != 2
147e83
 
147e83
 /* Registers for entry into PLT on PPC64.  */
147e83
 typedef struct La_ppc64_regs
147e83
@@ -107,7 +108,7 @@ extern unsigned int la_ppc64_gnu_pltexit (Elf64_Sym *__sym,
147e83
 
147e83
 __END_DECLS
147e83
 
147e83
-#else
147e83
+# else
147e83
 
147e83
 /* Registers for entry into PLT on PPC64 in the ELFv2 ABI.  */
147e83
 typedef struct La_ppc64v2_regs
147e83
@@ -151,4 +152,5 @@ extern unsigned int la_ppc64v2_gnu_pltexit (Elf64_Sym *__sym,
147e83
 
147e83
 __END_DECLS
147e83
 
147e83
+# endif
147e83
 #endif