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.
This commit is contained in:
H.J. Lu 2017-10-03 17:47:40 -07:00
parent c34a19ed4b
commit 0c609d19e3
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't
check _DYNAMIC.
2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
* sysdeps/arm/dl-machine.h (elf_machine_load_address): Don't

View File

@ -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"