diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-05-23 14:20:57 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-05-23 14:20:57 +0000 |
commit | ba09750c1eb83bff64c9ee1b0254de68da3ca1f2 (patch) | |
tree | 7c76500c14bddaa479ad3dbbcc6afdc6880a01b1 /bfd/elf32-ppc.c | |
parent | edb72b3b352c80a36e4f1c6f6b7f5980d25f6368 (diff) | |
download | gdb-ba09750c1eb83bff64c9ee1b0254de68da3ca1f2.zip gdb-ba09750c1eb83bff64c9ee1b0254de68da3ca1f2.tar.gz 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-ppc.c')
-rw-r--r-- | bfd/elf32-ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index cf83242..6dc3eff 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -3104,7 +3104,7 @@ ppc_elf_relocate_section (output_bfd, info, input_bfd, input_section, rel->r_offset, (!info->shared || info->no_undefined - ELF_ST_VISIBILITY (h->other)))) + || ELF_ST_VISIBILITY (h->other)))) return false; relocation = 0; } |