read.c (s_lcomm): Treat Alpha like MIPS in handling of .sbss section.
This commit is contained in:
parent
1cedfe034e
commit
2ef7731dee
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue