* elfxx-mips.c: Don't force symbols local unconditionally.
This commit is contained in:
parent
43f9d75bc1
commit
4b55507088
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-05-29 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||
|
||||
* elfxx-mips.c: Don't force symbols local unconditionally.
|
||||
|
||||
2003-05-28 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elf32-hppa.c (elf32_hppa_relocate_section): Delete bogus
|
||||
|
|
|
@ -7799,10 +7799,10 @@ _bfd_mips_elf_hide_symbol (info, entry, force_local)
|
|||
h = (struct mips_elf_link_hash_entry *) entry;
|
||||
if (h->forced_local)
|
||||
return;
|
||||
h->forced_local = TRUE;
|
||||
h->forced_local = force_local;
|
||||
|
||||
dynobj = elf_hash_table (info)->dynobj;
|
||||
if (dynobj != NULL)
|
||||
if (dynobj != NULL && force_local)
|
||||
{
|
||||
got = mips_elf_got_section (dynobj, FALSE);
|
||||
g = mips_elf_section_data (got)->u.got_info;
|
||||
|
|
Loading…
Reference in a new issue