aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf32-mips.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2000-05-23 14:20:57 +0000
committerH.J. Lu <hjl.tools@gmail.com>2000-05-23 14:20:57 +0000
commitba09750c1eb83bff64c9ee1b0254de68da3ca1f2 (patch)
tree7c76500c14bddaa479ad3dbbcc6afdc6880a01b1 /bfd/elf32-mips.c
parentedb72b3b352c80a36e4f1c6f6b7f5980d25f6368 (diff)
downloadfsf-binutils-gdb-ba09750c1eb83bff64c9ee1b0254de68da3ca1f2.zip
fsf-binutils-gdb-ba09750c1eb83bff64c9ee1b0254de68da3ca1f2.tar.gz
fsf-binutils-gdb-ba09750c1eb83bff64c9ee1b0254de68da3ca1f2.tar.bz2
2000-05-23 H.J. Lu <hjl@gnu.org>
* elf32-mips.c (mips_elf_calculate_relocation): Check h->root.other not h->other. * elf32-ppc.c (ppc_elf_relocate_section): Fix a typo.
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r--bfd/elf32-mips.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index 1d258b0..29e260e 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -5918,7 +5918,7 @@ mips_elf_calculate_relocation (abfd,
addresses. */
symbol = 0;
else if (info->shared && !info->symbolic && !info->no_undefined
- && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
+ && ELF_ST_VISIBILITY (h->root.other) == STV_DEFAULT)
symbol = 0;
else if (strcmp (h->root.root.root.string, "_DYNAMIC_LINK") == 0)
{
@@ -5937,7 +5937,7 @@ mips_elf_calculate_relocation (abfd,
(info, h->root.root.root.string, input_bfd,
input_section, relocation->r_offset,
(!info->shared || info->no_undefined
- || ELF_ST_VISIBILITY (h->other)))))
+ || ELF_ST_VISIBILITY (h->root.other)))))
return bfd_reloc_undefined;
symbol = 0;
}