about summary refs log tree commit diff
path: root/sysdeps/mips/dl-machine.h
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2017-10-03 17:47:40 -0700
committerH.J. Lu <hjl.tools@gmail.com>2017-10-03 17:47:51 -0700
commit0c609d19e33f0ee70dbe2fba04d2ea75d3dcbd14 (patch)
treee355a4bff6594b1ae187a3154e4e9a430bdebe4d /sysdeps/mips/dl-machine.h
parentc34a19ed4b0bcf91ff9671b733f8cfffa111e7f6 (diff)
downloadglibc-0c609d19e33f0ee70dbe2fba04d2ea75d3dcbd14.tar.gz
glibc-0c609d19e33f0ee70dbe2fba04d2ea75d3dcbd14.tar.xz
glibc-0c609d19e33f0ee70dbe2fba04d2ea75d3dcbd14.zip
mips: Don't check _DYNAMIC in elf_machine_load_address
Since mips can't convert access _DYNAMIC via GOT, which needs dynamic
relocation, to PC-relative at link-time, don't check _DYNAMIC in
elf_machine_load_address.

        * sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't
        check _DYNAMIC.
Diffstat (limited to 'sysdeps/mips/dl-machine.h')
-rw-r--r--sysdeps/mips/dl-machine.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h
index b4fee49cb1..da9d6332ea 100644
--- a/sysdeps/mips/dl-machine.h
+++ b/sysdeps/mips/dl-machine.h
@@ -147,11 +147,6 @@ elf_machine_dynamic (void)
 static inline ElfW(Addr)
 elf_machine_load_address (void)
 {
-#ifndef SHARED
-  extern ElfW(Dyn) _DYNAMIC[] __attribute__((weak, visibility ("hidden")));
-  if (!_DYNAMIC)
-    return 0;
-#endif
   ElfW(Addr) addr;
 #ifndef __mips16
   asm ("	.set noreorder\n"