2005-06-20 H.J. Lu <hongjiu.lu@intel.com>
PR 1022 * elf32-hppa.c (elf32_hppa_check_relocs): Handle indirect symbol.
This commit is contained in:
parent
71cb94647f
commit
f7c5057a52
@ -1,6 +1,12 @@
|
|||||||
2005-06-20 H.J. Lu <hongjiu.lu@intel.com>
|
2005-06-20 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
PR 1025:
|
PR 1022
|
||||||
|
* elf32-hppa.c (elf32_hppa_check_relocs): Handle indirect
|
||||||
|
symbol.
|
||||||
|
|
||||||
|
2005-06-20 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR 1025
|
||||||
* elf32-i386.c (elf_i386_check_relocs): Handle indirect symbol.
|
* elf32-i386.c (elf_i386_check_relocs): Handle indirect symbol.
|
||||||
* elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise.
|
* elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise.
|
||||||
|
|
||||||
|
@ -1085,8 +1085,13 @@ elf32_hppa_check_relocs (bfd *abfd,
|
|||||||
if (r_symndx < symtab_hdr->sh_info)
|
if (r_symndx < symtab_hdr->sh_info)
|
||||||
h = NULL;
|
h = NULL;
|
||||||
else
|
else
|
||||||
h = ((struct elf32_hppa_link_hash_entry *)
|
{
|
||||||
|
h = ((struct elf32_hppa_link_hash_entry *)
|
||||||
sym_hashes[r_symndx - symtab_hdr->sh_info]);
|
sym_hashes[r_symndx - symtab_hdr->sh_info]);
|
||||||
|
while (h->elf.root.type == bfd_link_hash_indirect
|
||||||
|
|| h->elf.root.type == bfd_link_hash_warning)
|
||||||
|
h = (struct elf32_hppa_link_hash_entry *) h->elf.root.u.i.link;
|
||||||
|
}
|
||||||
|
|
||||||
r_type = ELF32_R_TYPE (rel->r_info);
|
r_type = ELF32_R_TYPE (rel->r_info);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user