[PATCH] mips: Don't check _DYNAMIC in elf_machine_load_address
H.J. Lu
hjl.tools@gmail.com
Tue Oct 3 22:49:00 GMT 2017
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.
I am checking it in.
H.J.
---
* sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't
check _DYNAMIC.
---
sysdeps/mips/dl-machine.h | 5 -----
1 file changed, 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"
--
2.13.6
More information about the Libc-alpha
mailing list