diff options
author | Alan Modra <amodra@gmail.com> | 2015-07-25 16:38:42 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2015-07-25 20:41:04 +0930 |
commit | a496fbc8802f0a5719db6347a43cc869e03d83c9 (patch) | |
tree | 21bdd4f9bfe1bb57b0690d57ac485dd9bd189d71 /bfd/elf32-m68k.c | |
parent | ca3084f54b62ce06c6e70a6e1daafeb5e3317c12 (diff) | |
download | binutils-gdb-a496fbc8802f0a5719db6347a43cc869e03d83c9.tar.gz |
Fix broken -Bsymbolic-functions
For selected targets. The testcase reveals a number of targets that
still need fixing.
bfd/
* elf32-arm.c (elf32_arm_final_link_relocate): Use SYMBOLIC_BIND to
check if a symbol should be bound symbolically.
* elf32-hppa.c (elf32_hppa_check_relocs,
elf32_hppa_adjust_dynamic_symbol, elf32_hppa_relocate_section,
elf32_hppa_finish_dynamic_symbol): Likewise.
* elf32-m68k.c (elf_m68k_check_relocs,
elf_m68k_relocate_section): Likewise.
* elf32-nios2.c (nios2_elf32_relocate_section,
nios2_elf32_check_relocs, allocate_dynrelocs): Likewise.
* elf32-tic6x.c (elf32_tic6x_finish_dynamic_symbol,
elf32_tic6x_relocate_section): Likewise.
ld/testsuite/
* ld-elf/symbolic-func.s,
* ld-elf/symbolic-func.r: New test.
* ld-elf/elf.exp: Run it.
Diffstat (limited to 'bfd/elf32-m68k.c')
-rw-r--r-- | bfd/elf32-m68k.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-m68k.c b/bfd/elf32-m68k.c index fad3ec62d88..db0d0da6ec0 100644 --- a/bfd/elf32-m68k.c +++ b/bfd/elf32-m68k.c @@ -2758,7 +2758,7 @@ elf_m68k_check_relocs (bfd *abfd, if (!(info->shared && (sec->flags & SEC_ALLOC) != 0 && h != NULL - && (!info->symbolic + && (!SYMBOLIC_BIND (info, h) || h->root.type == bfd_link_hash_defweak || !h->def_regular))) { @@ -4027,7 +4027,7 @@ elf_m68k_relocate_section (bfd *output_bfd, || r_type == R_68K_PC16 || r_type == R_68K_PC32 || !info->shared - || !info->symbolic + || !SYMBOLIC_BIND (info, h) || !h->def_regular)) { outrel.r_info = ELF32_R_INFO (h->dynindx, r_type); |