* elflink.c (bfd_elf_record_link_assignment): Dont make

STV_INTERNAL symbols STV_HIDDEN.
This commit is contained in:
Alan Modra 2013-04-30 01:05:18 +00:00
parent dee737d745
commit b829706801
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-04-30 Alan Modra <amodra@gmail.com>
* elflink.c (bfd_elf_record_link_assignment): Dont make
STV_INTERNAL symbols STV_HIDDEN.
2013-04-29 Nick Clifton <nickc@redhat.com>
* elflink.c (_bfd_elf_gc_mark_extra_sections): Remove mark from

View File

@ -573,7 +573,8 @@ bfd_elf_record_link_assignment (bfd *output_bfd,
if (hidden)
{
bed = get_elf_backend_data (output_bfd);
h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
(*bed->elf_backend_hide_symbol) (info, h, TRUE);
}