summaryrefslogtreecommitdiff
path: root/bfd/elf64-x86-64.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2005-06-20 12:59:49 +0000
committerH.J. Lu <hjl.tools@gmail.com>2005-06-20 12:59:49 +0000
commit71cb94647fa5b68adc1cec4babaa9d2d5148d9c4 (patch)
tree251c90bf2c71f01d77a1660d4e1d20f33cccf618 /bfd/elf64-x86-64.c
parent1ed91682d1aaf907c70a69794e22c384ab90f9ae (diff)
downloadbinutils-gdb-71cb94647fa5b68adc1cec4babaa9d2d5148d9c4.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/elf64-x86-64.c')
-rw-r--r--bfd/elf64-x86-64.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c
index f63fd03ea44..aaf13083bdf 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)