read.c (s_lcomm): Treat Alpha like MIPS in handling of .sbss section.

This commit is contained in:
Ken Raeburn 1994-01-24 19:17:03 +00:00
parent 1cedfe034e
commit 2ef7731dee
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Mon Jan 24 14:12:25 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
* read.c (s_lcomm): Treat Alpha like MIPS in handling of .sbss
section.
Thu Jan 20 13:17:58 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
* expr.c (operand): For floating point operand with unusual fp

View file

@ -1063,9 +1063,9 @@ s_lcomm (needs_align)
return;
}
#ifdef TC_MIPS
#if defined (TC_MIPS) || defined (TC_ALPHA)
#if defined (OBJ_ECOFF) || defined (OBJ_ELF)
/* For MIPS ECOFF or ELF, small objects are put in .sbss. */
/* For MIPS and Alpha ECOFF or ELF, small objects are put in .sbss. */
if (temp <= bfd_get_gp_size (stdoutput))
{
bss_seg = subseg_new (".sbss", 1);