* elfxx-mips.c (mips_elf_calculate_relocation): Don't relocate

R_MIPS_JALR unless symbol resolves locally.
This commit is contained in:
Adam Nemet 2009-09-03 18:31:00 +00:00
parent 99da6b5fe0
commit 5bbc5ae7bb
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-09-03 Adam Nemet <anemet@caviumnetworks.com>
* elfxx-mips.c (mips_elf_calculate_relocation): Don't relocate
R_MIPS_JALR unless symbol resolves locally.
2009-09-03 Adam Nemet <anemet@caviumnetworks.com>
* elfxx-mips.c (_bfd_mips_elf_check_relocs): Don't set

View File

@ -5489,8 +5489,8 @@ mips_elf_calculate_relocation (bfd *abfd, bfd *input_bfd,
case R_MIPS_JALR:
/* This relocation is only a hint. In some cases, we optimize
it into a bal instruction. But we don't try to optimize
branches to the PLT; that will wind up wasting time. */
if (h != NULL && h->root.plt.offset != (bfd_vma) -1)
when the symbol does not resolve locally. */
if (h != NULL && !SYMBOL_CALLS_LOCAL (info, &h->root))
return bfd_reloc_continue;
value = symbol + addend;
break;