mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 20:14:06 +08:00
* elf-m10300.c (mn10300_elf_relocate_section): Test the right
`type' field in the hash entry when deciding whether to follow a link.
This commit is contained in:
parent
ceacb162a1
commit
17ea634937
@ -1,3 +1,9 @@
|
||||
2001-08-24 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* elf-m10300.c (mn10300_elf_relocate_section): Test the right
|
||||
`type' field in the hash entry when deciding whether to follow a
|
||||
link.
|
||||
|
||||
2001-08-24 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* elflink.h (elf_link_sort_cmp1): Sort RELATIVE relocs first, not
|
||||
|
@ -599,8 +599,8 @@ mn10300_elf_relocate_section (output_bfd, info, input_bfd, input_section,
|
||||
else
|
||||
{
|
||||
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
||||
while (h->root.type == bfd_link_hash_indirect
|
||||
|| h->root.type == bfd_link_hash_warning)
|
||||
while (h->root.root.type == bfd_link_hash_indirect
|
||||
|| h->root.root.type == bfd_link_hash_warning)
|
||||
h = (struct elf32_mn10300_link_hash_entry *) h->root.root.u.i.link;
|
||||
if (h->root.root.type == bfd_link_hash_defined
|
||||
|| h->root.root.type == bfd_link_hash_defweak)
|
||||
|
Loading…
Reference in New Issue
Block a user