summaryrefslogtreecommitdiff
path: root/bfd/elf32-microblaze.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2017-10-17 17:15:02 -0700
committerH.J. Lu <hjl.tools@gmail.com>2017-10-17 17:15:02 -0700
commitb7213666d6035713c3a2786ee418085e07cb3cca (patch)
treed808d8708b0c759e4facf59b0c184ab8461f4467 /bfd/elf32-microblaze.c
parentda15dcb0aadfcd73cd3ed3ef2e2abf1c743f8ef8 (diff)
microblaze: Check for indirect and warning symbols
Relocations against indirect and warning symbols should be applied to real symbols. * elf32-microblaze.c (microblaze_elf_check_relocs): Check for indirect and warning symbols.
Diffstat (limited to 'bfd/elf32-microblaze.c')
-rw-r--r--bfd/elf32-microblaze.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/elf32-microblaze.c b/bfd/elf32-microblaze.c
index 1a69b6da72..a54044fdb3 100644
--- a/bfd/elf32-microblaze.c
+++ b/bfd/elf32-microblaze.c
@@ -2307,6 +2307,9 @@ microblaze_elf_check_relocs (bfd * abfd,
else
{
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;
/* PR15323, ref flags aren't set for references in the same
object. */