This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] mips: Don't check _DYNAMIC in elf_machine_load_address
- From: "H.J. Lu" <hjl dot tools at gmail dot com>
- To: GNU C Library <libc-alpha at sourceware dot org>
- Date: Tue, 3 Oct 2017 15:49:23 -0700
- Subject: [PATCH] mips: Don't check _DYNAMIC in elf_machine_load_address
- Authentication-results: sourceware.org; auth=none
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