diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2012-08-13 13:06:14 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2012-08-13 13:06:14 +0000 |
commit | 9f1a453ea1b37d280adaff3d45a517e9a6318d90 (patch) | |
tree | 87adaa15b26fe2ac7e805482c78c07b503b67185 /bfd | |
parent | 7507c54a534f620a576c5101ff5a41045409db56 (diff) | |
download | gdb-9f1a453ea1b37d280adaff3d45a517e9a6318d90.zip gdb-9f1a453ea1b37d280adaff3d45a517e9a6318d90.tar.gz gdb-9f1a453ea1b37d280adaff3d45a517e9a6318d90.tar.bz2 |
* elfxx-mips.c (mips_elf_calculate_relocation): Fix the handling
of protected symbols.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfxx-mips.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b1dcf86..02cac16 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2012-08-13 Maciej W. Rozycki <macro@codesourcery.com> + + * elfxx-mips.c (mips_elf_calculate_relocation): Fix the handling + of protected symbols. + 2012-08-10 Alan Modra <amodra@gmail.com> PR binutils/14444 diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 2a4c278..966a0be 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -5360,7 +5360,10 @@ mips_elf_calculate_relocation (bfd *abfd, bfd *input_bfd, && (target_is_16_bit_code_p || target_is_micromips_code_p)))); - local_p = h == NULL || SYMBOL_REFERENCES_LOCAL (info, &h->root); + local_p = (h == NULL + || (h->got_only_for_calls + ? SYMBOL_CALLS_LOCAL (info, &h->root) + : SYMBOL_REFERENCES_LOCAL (info, &h->root))); gp0 = _bfd_get_gp_value (input_bfd); gp = _bfd_get_gp_value (abfd); |