aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf32-arc.c
diff options
context:
space:
mode:
authorCupertino Miranda <cmiranda@synopsys.com>2016-11-30 20:23:21 +0100
committerCupertino Miranda <cmiranda@synopsys.com>2017-06-08 19:00:36 +0200
commitf4e6805f98d2b3eae305f66ba26ab25aae1485f2 (patch)
treeea46090abdaefb55614c45233c712547605051ef /bfd/elf32-arc.c
parentcd6402916febae6d8a4e62c572ea6fd487eebb61 (diff)
downloadgdb-f4e6805f98d2b3eae305f66ba26ab25aae1485f2.zip
gdb-f4e6805f98d2b3eae305f66ba26ab25aae1485f2.tar.gz
gdb-f4e6805f98d2b3eae305f66ba26ab25aae1485f2.tar.bz2
[ARC] Add RELOC_FOR_GLOBAL_SYMBOL in ARC target code.
This miss was identified in the context of openssh building for ARC. bfd/ChangeLog: Cupertino Miranda <cmiranda@synopsys.com> elf32-arc.c (elf_arc_relocate_section): Added "call" to RELOC_FOR_GLOBAL_SYMBOL macro.
Diffstat (limited to 'bfd/elf32-arc.c')
-rw-r--r--bfd/elf32-arc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/bfd/elf32-arc.c b/bfd/elf32-arc.c
index b1a1697..f424f13 100644
--- a/bfd/elf32-arc.c
+++ b/bfd/elf32-arc.c
@@ -1412,6 +1412,7 @@ elf_arc_relocate_section (bfd * output_bfd,
asection * sec;
struct elf_link_hash_entry * h2;
const char * msg;
+ bfd_boolean unresolved_reloc = FALSE;
struct arc_relocation_data reloc_data =
{
@@ -1499,6 +1500,14 @@ elf_arc_relocate_section (bfd * output_bfd,
}
else
{
+ bfd_boolean warned, ignored;
+ bfd_vma relocation ATTRIBUTE_UNUSED;
+
+ RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
+ r_symndx, symtab_hdr, sym_hashes,
+ h, sec, relocation,
+ unresolved_reloc, warned, ignored);
+
/* TODO: This code is repeated from below. We should
clean it and remove duplications.
Sec is used check for discarded sections.