S/390: Get rid of warning unused variable in dl-machine.h.
authorStefan Liebler <stli@linux.vnet.ibm.com>
Thu, 13 Nov 2014 09:44:11 +0000 (10:44 +0100)
committerAndreas Krebbel <krebbel@linux.vnet.ibm.com>
Thu, 13 Nov 2014 09:44:11 +0000 (10:44 +0100)
ChangeLog
sysdeps/s390/s390-64/dl-machine.h

index a6711e1..6648967 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
 
+       * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
+       Gate the definition of refsym additionally with !RTLD_BOOTSTRAP
+       to get rid of unused variable warning.
+
+2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
+
        * sysdeps/s390/s390-32/backtrace.c (__backtrace):
        Check for unwind_backtrace ==  NULL only in SHARED case.
        (__backchain_backtrace): Compile only in SHARED case.
index 463021c..01c0d33 100644 (file)
@@ -278,7 +278,8 @@ elf_machine_rela (struct link_map *map, const Elf64_Rela *reloc,
     return;
   else
     {
-#ifndef RESOLVE_CONFLICT_FIND_MAP
+#if !defined RTLD_BOOTSTRAP && !defined RESOLVE_CONFLICT_FIND_MAP
+      /* Only needed for R_390_COPY below.  */
       const Elf64_Sym *const refsym = sym;
 #endif
       struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type);