read.c (s_lcomm): Treat Alpha like MIPS in handling of .sbss section.
authorKen Raeburn <raeburn@cygnus>
Mon, 24 Jan 1994 19:17:03 +0000 (19:17 +0000)
committerKen Raeburn <raeburn@cygnus>
Mon, 24 Jan 1994 19:17:03 +0000 (19:17 +0000)
gas/ChangeLog
gas/read.c

index 8aeeceb..b742a09 100644 (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
index 3f0a94f..e83edc9 100644 (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);