* elf32-ppc.c (ppc_elf_check_relocs): Don't use SYMBOL_REFERENCES_LOCAL
here as it's too early to reliably determine locality. (ppc_elf_gc_sweep_hook): Likewise.
This commit is contained in:
parent
8fbf1ae596
commit
2b98e6c032
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-04-03 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elf32-ppc.c (ppc_elf_check_relocs): Don't use SYMBOL_REFERENCES_LOCAL
|
||||
here as it's too early to reliably determine locality.
|
||||
(ppc_elf_gc_sweep_hook): Likewise.
|
||||
|
||||
2003-04-02 Bob Wilson <bob.wilson@acm.org>
|
||||
|
||||
* xtensa-modules.c: Remove comment indicating that this is a
|
||||
|
|
|
@ -3459,8 +3459,7 @@ ppc_elf_check_relocs (abfd, info, sec, relocs)
|
|||
case R_PPC_REL14_BRNTAKEN:
|
||||
case R_PPC_REL32:
|
||||
if (h == NULL
|
||||
|| strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0
|
||||
|| SYMBOL_REFERENCES_LOCAL (info, h))
|
||||
|| strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
|
||||
break;
|
||||
/* fall through */
|
||||
|
||||
|
@ -3745,8 +3744,7 @@ ppc_elf_gc_sweep_hook (abfd, info, sec, relocs)
|
|||
case R_PPC_REL14_BRNTAKEN:
|
||||
case R_PPC_REL32:
|
||||
if (h == NULL
|
||||
|| strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0
|
||||
|| SYMBOL_REFERENCES_LOCAL (info, h))
|
||||
|| strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
|
||||
break;
|
||||
/* Fall thru */
|
||||
|
||||
|
|
Loading…
Reference in a new issue