summaryrefslogtreecommitdiff
path: root/bfd/elf32-i386.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2005-06-20 12:59:49 +0000
committerH.J. Lu <hjl@lucon.org>2005-06-20 12:59:49 +0000
commitd6c46851fefc512260feb2c8d210bffa2aaa7652 (patch)
treeae1bc4a0058b25b00d20c96d52b7dc6cdca8095f /bfd/elf32-i386.c
parent1768d58c7362f8d4e68811e2ccbf0b443fad1551 (diff)
downloadbinutils-redhat-d6c46851fefc512260feb2c8d210bffa2aaa7652.tar.gz
2005-06-20 H.J. Lu <hongjiu.lu@intel.com>
PR 1025: * elf32-i386.c (elf_i386_check_relocs): Handle indirect symbol. * elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise.
Diffstat (limited to 'bfd/elf32-i386.c')
-rw-r--r--bfd/elf32-i386.c7
1 files changed, 6 insertions, 1 deletions
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);