mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-03-05 16:09:49 +00:00
2005-06-20 H.J. Lu <hongjiu.lu@intel.com>
PR 1025: * elf32-i386.c (elf_i386_check_relocs): Handle indirect symbol. * elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise.
This commit is contained in:
parent
1ed91682d1
commit
71cb94647f
@ -1,3 +1,9 @@
|
|||||||
|
2005-06-20 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR 1025:
|
||||||
|
* elf32-i386.c (elf_i386_check_relocs): Handle indirect symbol.
|
||||||
|
* elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise.
|
||||||
|
|
||||||
2005-06-18 H.J. Lu <hongjiu.lu@intel.com>
|
2005-06-18 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* reloc.c: Add BFD_RELOC_X86_64_GOTOFF64 and
|
* reloc.c: Add BFD_RELOC_X86_64_GOTOFF64 and
|
||||||
|
@ -911,7 +911,12 @@ elf_i386_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 = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
{
|
||||||
|
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
||||||
|
while (h->root.type == bfd_link_hash_indirect
|
||||||
|
|| h->root.type == bfd_link_hash_warning)
|
||||||
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
||||||
|
}
|
||||||
|
|
||||||
r_type = elf_i386_tls_transition (info, r_type, h == NULL);
|
r_type = elf_i386_tls_transition (info, r_type, h == NULL);
|
||||||
|
|
||||||
|
@ -664,7 +664,12 @@ elf64_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info, asection *sec,
|
|||||||
if (r_symndx < symtab_hdr->sh_info)
|
if (r_symndx < symtab_hdr->sh_info)
|
||||||
h = NULL;
|
h = NULL;
|
||||||
else
|
else
|
||||||
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
{
|
||||||
|
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
|
||||||
|
while (h->root.type == bfd_link_hash_indirect
|
||||||
|
|| h->root.type == bfd_link_hash_warning)
|
||||||
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
||||||
|
}
|
||||||
|
|
||||||
r_type = elf64_x86_64_tls_transition (info, r_type, h == NULL);
|
r_type = elf64_x86_64_tls_transition (info, r_type, h == NULL);
|
||||||
switch (r_type)
|
switch (r_type)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user