mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
* elf64-ppc.c (ppc64_elf_func_desc_adjust): Hide ".TOC.".
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2013-07-03 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* elf64-ppc.c (ppc64_elf_func_desc_adjust): Hide ".TOC.".
|
||||||
|
|
||||||
2013-07-02 Tristan Gingold <gingold@adacore.com>
|
2013-07-02 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* coff-rs6000.c (xcoff_find_nearest_line_discriminator): Add missing
|
* coff-rs6000.c (xcoff_find_nearest_line_discriminator): Add missing
|
||||||
@ -9,7 +13,7 @@
|
|||||||
(_bfd_vms_find_nearest_line_discriminator): New function.
|
(_bfd_vms_find_nearest_line_discriminator): New function.
|
||||||
|
|
||||||
2013-07-02 Tristan Gingold <gingold@adacore.com>
|
2013-07-02 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* coff-rs6000.c (xcoff_create_csect_from_smclas): Handle more smclas.
|
* coff-rs6000.c (xcoff_create_csect_from_smclas): Handle more smclas.
|
||||||
|
|
||||||
2013-07-02 Tristan Gingold <gingold@adacore.com>
|
2013-07-02 Tristan Gingold <gingold@adacore.com>
|
||||||
|
@ -6550,6 +6550,13 @@ ppc64_elf_func_desc_adjust (bfd *obfd ATTRIBUTE_UNUSED,
|
|||||||
if (htab == NULL)
|
if (htab == NULL)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
if (htab->elf.hgot != NULL)
|
||||||
|
{
|
||||||
|
htab->elf.hgot->root.type = bfd_link_hash_new;
|
||||||
|
htab->elf.hgot->type = STT_OBJECT;
|
||||||
|
_bfd_elf_link_hash_hide_symbol (info, htab->elf.hgot, TRUE);
|
||||||
|
}
|
||||||
|
|
||||||
if (htab->sfpr == NULL)
|
if (htab->sfpr == NULL)
|
||||||
/* We don't have any relocs. */
|
/* We don't have any relocs. */
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
Reference in New Issue
Block a user