From d6c46851fefc512260feb2c8d210bffa2aaa7652 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Mon, 20 Jun 2005 12:59:49 +0000 Subject: [PATCH] 2005-06-20 H.J. Lu PR 1025: * elf32-i386.c (elf_i386_check_relocs): Handle indirect symbol. * elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise. --- bfd/ChangeLog | 6 ++++++ bfd/elf32-i386.c | 7 ++++++- bfd/elf64-x86-64.c | 7 ++++++- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 33073835a1..0f4a949122 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2005-06-20 H.J. Lu + + PR 1025: + * elf32-i386.c (elf_i386_check_relocs): Handle indirect symbol. + * elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise. + 2005-06-18 H.J. Lu * reloc.c: Add BFD_RELOC_X86_64_GOTOFF64 and diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index 30270d3003..ce2f229d4c 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -911,7 +911,12 @@ elf_i386_check_relocs (bfd *abfd, if (r_symndx < symtab_hdr->sh_info) h = NULL; else - h = sym_hashes[r_symndx - symtab_hdr->sh_info]; + { + h = sym_hashes[r_symndx - symtab_hdr->sh_info]; + while (h->root.type == bfd_link_hash_indirect + || h->root.type == bfd_link_hash_warning) + h = (struct elf_link_hash_entry *) h->root.u.i.link; + } r_type = elf_i386_tls_transition (info, r_type, h == NULL); diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index f63fd03ea4..aaf13083bd 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -664,7 +664,12 @@ elf64_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info, asection *sec, if (r_symndx < symtab_hdr->sh_info) h = NULL; else - h = sym_hashes[r_symndx - symtab_hdr->sh_info]; + { + h = sym_hashes[r_symndx - symtab_hdr->sh_info]; + while (h->root.type == bfd_link_hash_indirect + || h->root.type == bfd_link_hash_warning) + h = (struct elf_link_hash_entry *) h->root.u.i.link; + } r_type = elf64_x86_64_tls_transition (info, r_type, h == NULL); switch (r_type) -- 2.11.0