* config/tc-ppc.c (ppc_frob_symbol): Set BSF_NOT_AT_END for

symbols with csect aux entries.
This commit is contained in:
Ian Lance Taylor
1995-10-31 20:22:04 +00:00
parent 82dbdc50e7
commit 0e3dd9a071
2 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,8 @@ Tue Oct 31 13:29:08 1995 Ian Lance Taylor <ian@cygnus.com>
do anything. do anything.
(ppc_symbol_new_hook): If ppc_stab_symbol is set, don't look for a (ppc_symbol_new_hook): If ppc_stab_symbol is set, don't look for a
suffix. suffix.
(ppc_frob_symbol): Set BSF_NOT_AT_END for symbols with csect aux
entries.
* input-scrub.c (input_scrub_push): Reset sb_index. * input-scrub.c (input_scrub_push): Reset sb_index.

View File

@ -3685,6 +3685,9 @@ ppc_frob_symbol (sym)
a->x_csect.x_smclas = sym->sy_tc.class; a->x_csect.x_smclas = sym->sy_tc.class;
a->x_csect.x_stab = 0; a->x_csect.x_stab = 0;
a->x_csect.x_snstab = 0; a->x_csect.x_snstab = 0;
/* Don't let the COFF backend resort these symbols. */
sym->bsym->flags |= BSF_NOT_AT_END;
} }
else if (S_GET_STORAGE_CLASS (sym) == C_BSTAT) else if (S_GET_STORAGE_CLASS (sym) == C_BSTAT)
{ {