25845f
commit 4cf5b6d0d7c8dd40526375f384133262ed7b2ccc
25845f
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
25845f
Date:   Thu Jun 26 15:17:40 2014 +0530
25845f
25845f
    Fix Wundef warning for ELF_MACHINE_NO_RELA
25845f
    
25845f
    This patch defines ELF_MACHINE_NO_RELA on all architectures.  Tested
25845f
    only on x86_64 to verify that the sources before and after are
25845f
    identical except for two instructions that pass the current line
25845f
    number in dl-machine.h to assert_fail.
25845f
25845f
Conflicts:
25845f
	sysdeps/microblaze/dl-machine.h
25845f
25845f
File removed manally due to missing microblaze port in our tree.
25845f
25845f
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c
25845f
index 1ad2e4da7a654633..a42e3c4924e067ba 100644
25845f
--- a/elf/dl-runtime.c
25845f
+++ b/elf/dl-runtime.c
25845f
@@ -29,7 +29,7 @@
25845f
 #include <dl-irel.h>
25845f
 
25845f
 
25845f
-#if (!defined ELF_MACHINE_NO_RELA && !defined ELF_MACHINE_PLT_REL) \
25845f
+#if (!ELF_MACHINE_NO_RELA && !defined ELF_MACHINE_PLT_REL) \
25845f
     || ELF_MACHINE_NO_REL
25845f
 # define PLTREL  ElfW(Rela)
25845f
 #else
25845f
diff --git a/sysdeps/aarch64/dl-machine.h b/sysdeps/aarch64/dl-machine.h
25845f
index 40b0587ba42cd59e..4faf818b710d6ed7 100644
25845f
--- a/sysdeps/aarch64/dl-machine.h
25845f
+++ b/sysdeps/aarch64/dl-machine.h
25845f
@@ -198,6 +198,7 @@ _dl_start_user:							\n\
25845f
 
25845f
 /* AArch64 uses RELA not REL */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 static inline ElfW(Addr)
25845f
 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
25845f
diff --git a/sysdeps/hppa/dl-machine.h b/sysdeps/hppa/dl-machine.h
25845f
index 1bee330f8b98b03f..3b6d7b8e776f1f57 100644
25845f
--- a/sysdeps/hppa/dl-machine.h
25845f
+++ b/sysdeps/hppa/dl-machine.h
25845f
@@ -488,6 +488,7 @@ asm (									\
25845f
 
25845f
 /* We only use RELA. */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* Return the address of the entry point. */
25845f
 #define ELF_MACHINE_START_ADDRESS(map, start) \
25845f
diff --git a/sysdeps/ia64/dl-machine.h b/sysdeps/ia64/dl-machine.h
25845f
index 1ec69d759179b555..4e8dcb804ae9b7a3 100644
25845f
--- a/sysdeps/ia64/dl-machine.h
25845f
+++ b/sysdeps/ia64/dl-machine.h
25845f
@@ -320,6 +320,7 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
25845f
 
25845f
 /* According to the IA-64 specific documentation, Rela is always used.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* Return the address of the entry point. */
25845f
 #define ELF_MACHINE_START_ADDRESS(map, start)	\
25845f
diff --git a/sysdeps/m68k/dl-machine.h b/sysdeps/m68k/dl-machine.h
25845f
index b2914192d839021f..f40c9b580c49e0c7 100644
25845f
--- a/sysdeps/m68k/dl-machine.h
25845f
+++ b/sysdeps/m68k/dl-machine.h
25845f
@@ -178,6 +178,7 @@ _dl_start_user:\n\
25845f
 
25845f
 /* The m68k never uses Elf32_Rel relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 static inline Elf32_Addr
25845f
 elf_machine_fixup_plt (struct link_map *map, lookup_t t,
25845f
diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h
25845f
index 9b970a26ed8bb42d..9d7b0f516c64207d 100644
25845f
--- a/sysdeps/mips/dl-machine.h
25845f
+++ b/sysdeps/mips/dl-machine.h
25845f
@@ -60,6 +60,8 @@
25845f
    | (((type) == R_MIPS_COPY) * ELF_RTYPE_CLASS_COPY))
25845f
 
25845f
 #define ELF_MACHINE_PLT_REL 1
25845f
+#define ELF_MACHINE_NO_REL 0
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* Translate a processor specific dynamic tag to the index
25845f
    in l_info array.  */
25845f
diff --git a/sysdeps/powerpc/powerpc32/dl-machine.h b/sysdeps/powerpc/powerpc32/dl-machine.h
25845f
index 3ae27a4924e95063..490de3281ff30ee8 100644
25845f
--- a/sysdeps/powerpc/powerpc32/dl-machine.h
25845f
+++ b/sysdeps/powerpc/powerpc32/dl-machine.h
25845f
@@ -148,6 +148,7 @@ __elf_preferred_address(struct link_map *loader, size_t maplength,
25845f
 
25845f
 /* The PowerPC never uses REL relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* Set up the loaded object described by MAP so its unrelocated PLT
25845f
    entries will jump to the on-demand fixup code in dl-runtime.c.
25845f
diff --git a/sysdeps/powerpc/powerpc64/dl-machine.h b/sysdeps/powerpc/powerpc64/dl-machine.h
25845f
index d1d34835a02a1909..7937c0e1e4f846e0 100644
25845f
--- a/sysdeps/powerpc/powerpc64/dl-machine.h
25845f
+++ b/sysdeps/powerpc/powerpc64/dl-machine.h
25845f
@@ -294,6 +294,7 @@ BODY_PREFIX "_dl_start_user:\n"						\
25845f
 
25845f
 /* The PowerPC never uses REL relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* Stuff for the PLT.  */
25845f
 #if _CALL_ELF != 2
25845f
diff --git a/sysdeps/s390/s390-32/dl-machine.h b/sysdeps/s390/s390-32/dl-machine.h
25845f
index d2f57e6bbe13ec9d..002ede7e935727cc 100644
25845f
--- a/sysdeps/s390/s390-32/dl-machine.h
25845f
+++ b/sysdeps/s390/s390-32/dl-machine.h
25845f
@@ -281,6 +281,7 @@ _dl_start_user:\n\
25845f
 
25845f
 /* The S390 never uses Elf32_Rel relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* We define an initialization functions.  This is called very early in
25845f
    _dl_sysdep_start.  */
25845f
diff --git a/sysdeps/s390/s390-64/dl-machine.h b/sysdeps/s390/s390-64/dl-machine.h
25845f
index c15f7e4d979b170c..d08ec8f783729db5 100644
25845f
--- a/sysdeps/s390/s390-64/dl-machine.h
25845f
+++ b/sysdeps/s390/s390-64/dl-machine.h
25845f
@@ -226,6 +226,7 @@ _dl_start_user:\n\
25845f
 
25845f
 /* The 64 bit S/390 never uses Elf64_Rel relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* We define an initialization functions.  This is called very early in
25845f
    _dl_sysdep_start.  */
25845f
diff --git a/sysdeps/sh/dl-machine.h b/sysdeps/sh/dl-machine.h
25845f
index 1bb5d156c2640e75..5cb888c12124a5d2 100644
25845f
--- a/sysdeps/sh/dl-machine.h
25845f
+++ b/sysdeps/sh/dl-machine.h
25845f
@@ -251,6 +251,7 @@ elf_machine_plt_value (struct link_map *map, const Elf32_Rela *reloc,
25845f
 
25845f
 /* SH never uses Elf32_Rel relocations.	 */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 #ifdef RESOLVE_MAP
25845f
 
25845f
diff --git a/sysdeps/sparc/sparc32/dl-machine.h b/sysdeps/sparc/sparc32/dl-machine.h
25845f
index 04ce7854a1b4f64c..b33280ded7eb4a1c 100644
25845f
--- a/sysdeps/sparc/sparc32/dl-machine.h
25845f
+++ b/sysdeps/sparc/sparc32/dl-machine.h
25845f
@@ -198,6 +198,7 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
25845f
 
25845f
 /* The SPARC never uses Elf32_Rel relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* Undo the sub %sp, 6*4, %sp; add %sp, 22*4, %o0 below to get at the
25845f
    value we want in __libc_stack_end.  */
25845f
diff --git a/sysdeps/sparc/sparc64/dl-machine.h b/sysdeps/sparc/sparc64/dl-machine.h
25845f
index dec2fa0808a16da5..de3ecdca0321db07 100644
25845f
--- a/sysdeps/sparc/sparc64/dl-machine.h
25845f
+++ b/sysdeps/sparc/sparc64/dl-machine.h
25845f
@@ -119,6 +119,7 @@ elf_machine_plt_value (struct link_map *map, const Elf64_Rela *reloc,
25845f
 
25845f
 /* The SPARC never uses Elf64_Rel relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* Set up the loaded object described by L so its unrelocated PLT
25845f
    entries will jump to the on-demand fixup code in dl-runtime.c.  */
25845f
diff --git a/sysdeps/tile/dl-machine.h b/sysdeps/tile/dl-machine.h
25845f
index 09a29935827e84c5..6a62d8007d464290 100644
25845f
--- a/sysdeps/tile/dl-machine.h
25845f
+++ b/sysdeps/tile/dl-machine.h
25845f
@@ -223,6 +223,7 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
25845f
 
25845f
 /* TILE never uses Elf32_Rel relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* We define an initialization functions.  This is called very early in
25845f
    _dl_sysdep_start.  */
25845f
diff --git a/sysdeps/x86_64/dl-machine.h b/sysdeps/x86_64/dl-machine.h
25845f
index da89f2a6174a0d94..04edd797aa567bbe 100644
25845f
--- a/sysdeps/x86_64/dl-machine.h
25845f
+++ b/sysdeps/x86_64/dl-machine.h
25845f
@@ -209,6 +209,7 @@ _dl_start_user:\n\
25845f
 
25845f
 /* The x86-64 never uses Elf64_Rel/Elf32_Rel relocations.  */
25845f
 #define ELF_MACHINE_NO_REL 1
25845f
+#define ELF_MACHINE_NO_RELA 0
25845f
 
25845f
 /* We define an initialization function.  This is called very early in
25845f
    _dl_sysdep_start.  */