mirror of git://sourceware.org/git/glibc.git
* sysdeps/x86_64/dl-machine.h (elf_machine_type_class): Remove
unneeded TLS cases.
This commit is contained in:
parent
8323008c64
commit
82c02215ce
|
|
@ -1,3 +1,8 @@
|
||||||
|
2002-09-27 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/x86_64/dl-machine.h (elf_machine_type_class): Remove
|
||||||
|
unneeded TLS cases.
|
||||||
|
|
||||||
2002-09-27 Jakub Jelinek <jakub@redhat.com>
|
2002-09-27 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* elf/dl-addr.c (_dl_addr): Set dli_fbase to l_map_start
|
* elf/dl-addr.c (_dl_addr): Set dli_fbase to l_map_start
|
||||||
|
|
|
||||||
|
|
@ -289,12 +289,11 @@ _dl_start_user:\n\
|
||||||
ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
|
ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one
|
||||||
of the main executable's symbols, as for a COPY reloc. */
|
of the main executable's symbols, as for a COPY reloc. */
|
||||||
#ifdef USE_TLS
|
#ifdef USE_TLS
|
||||||
# define elf_machine_type_class(type) \
|
# define elf_machine_type_class(type) \
|
||||||
((((type) == R_X86_64_JUMP_SLOT
|
((((type) == R_X86_64_JUMP_SLOT \
|
||||||
|| (type) == R_X86_64_DTPMOD64
|
|| (type) == R_X86_64_DTPMOD64 \
|
||||||
|| (type) == R_X86_64_DTPOFF64 || (type) == R_X86_64_DTPOFF32
|
|| (type) == R_X86_64_DTPOFF64 || (type) == R_X86_64_TPOFF64) \
|
||||||
|| (type) == R_X86_64_TPOFF64 || (type) == R_X86_64_TPOFF32)
|
* ELF_RTYPE_CLASS_PLT) \
|
||||||
* ELF_RTYPE_CLASS_PLT) \
|
|
||||||
| (((type) == R_X86_64_COPY) * ELF_RTYPE_CLASS_COPY))
|
| (((type) == R_X86_64_COPY) * ELF_RTYPE_CLASS_COPY))
|
||||||
#else
|
#else
|
||||||
# define elf_machine_type_class(type) \
|
# define elf_machine_type_class(type) \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue