diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-25 11:42:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-25 11:42:24 +0000 |
commit | 1f25bddd621e1cad0d655ea9cedf3a718d6fdabb (patch) | |
tree | fb2d0ec8f16db08895d18b889d87c87e4d3f545c /sysdeps/x86_64 | |
parent | cb7c7a9fb44e86de4ecbd28c83a8b84037d444f9 (diff) | |
download | glibc-1f25bddd621e1cad0d655ea9cedf3a718d6fdabb.tar glibc-1f25bddd621e1cad0d655ea9cedf3a718d6fdabb.tar.gz glibc-1f25bddd621e1cad0d655ea9cedf3a718d6fdabb.tar.bz2 glibc-1f25bddd621e1cad0d655ea9cedf3a718d6fdabb.zip |
Update.
2005-01-25 Ulrich Drepper <drepper@redhat.com>
* sysdeps/i386/dl-machine.h (elf_machine_rel): Remove code using
RESOLVE.
* sysdeps/x86_64/dl-machine.h (elf_machine_rela): Remove code
using RESOLVE.
* elf/rtld.c (_dl_start): Remove RESOLVE definition.
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r-- | sysdeps/x86_64/dl-machine.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sysdeps/x86_64/dl-machine.h b/sysdeps/x86_64/dl-machine.h index 0ac109ebf8..bb0c77fd0b 100644 --- a/sysdeps/x86_64/dl-machine.h +++ b/sysdeps/x86_64/dl-machine.h @@ -282,18 +282,9 @@ elf_machine_rela (struct link_map *map, const Elf64_Rela *reloc, #ifndef RTLD_BOOTSTRAP const Elf64_Sym *const refsym = sym; #endif -#ifndef RTLD_BOOTSTRAP struct link_map *sym_map = RESOLVE_MAP (&sym, version, r_type); Elf64_Addr value = (sym == NULL ? 0 : (Elf64_Addr) sym_map->l_addr + sym->st_value); -#else - Elf64_Addr value = RESOLVE (&sym, version, r_type); - -# ifndef RTLD_BOOTSTRAP - if (sym != NULL) -# endif - value += sym->st_value; -#endif #if defined RTLD_BOOTSTRAP && !USE___THREAD assert (r_type == R_X86_64_GLOB_DAT || r_type == R_X86_64_JUMP_SLOT); |