mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* config/tc-ppc.c (ppc_frob_symbol): Set BSF_NOT_AT_END for
symbols with csect aux entries.
This commit is contained in:
@ -10,6 +10,8 @@ Tue Oct 31 13:29:08 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||
do anything.
|
||||
(ppc_symbol_new_hook): If ppc_stab_symbol is set, don't look for a
|
||||
suffix.
|
||||
(ppc_frob_symbol): Set BSF_NOT_AT_END for symbols with csect aux
|
||||
entries.
|
||||
|
||||
* input-scrub.c (input_scrub_push): Reset sb_index.
|
||||
|
||||
|
@ -3685,6 +3685,9 @@ ppc_frob_symbol (sym)
|
||||
a->x_csect.x_smclas = sym->sy_tc.class;
|
||||
a->x_csect.x_stab = 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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user