Change default csect alignment to 4 bytes.

This commit is contained in:
Tom Rix 2002-06-12 16:14:02 +00:00
parent 3e0922c96f
commit b4f96c78d9
3 changed files with 7 additions and 13 deletions

View file

@ -1120,14 +1120,6 @@ ppc_mach ()
return ppc_size == PPC_OPCODE_64 ? 620 : 0;
}
#ifdef OBJ_XCOFF
int
ppc_subseg_align ()
{
return ppc_xcoff64 ? 3 : 2;
}
#endif
extern char*
ppc_target_format ()
{
@ -2836,7 +2828,7 @@ ppc_change_csect (sym)
symbol_set_frag (sym, frag_now);
S_SET_VALUE (sym, (valueT) frag_now_fix ());
symbol_get_tc (sym)->align = (ppc_xcoff64) ? 3 : 2;
symbol_get_tc (sym)->align = 2;
symbol_get_tc (sym)->output = 1;
symbol_get_tc (sym)->within = sym;