* read.c (s_lcomm): Put small objects in .sbss for MIPS ELF as
authorIan Lance Taylor <ian@airs.com>
Tue, 2 Nov 1993 23:15:58 +0000 (23:15 +0000)
committerIan Lance Taylor <ian@airs.com>
Tue, 2 Nov 1993 23:15:58 +0000 (23:15 +0000)
well as MIPS ECOFF.
(get_stab_string_offset): Remove unused variable aligned.

gas/ChangeLog
gas/read.c

index 52af639..bdd147f 100644 (file)
@@ -1,3 +1,9 @@
+Tue Nov  2 18:04:11 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
+
+       * read.c (s_lcomm): Put small objects in .sbss for MIPS ELF as
+       well as MIPS ECOFF.
+       (get_stab_string_offset): Remove unused variable aligned.
+
 Tue Nov  2 15:07:07 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
 
        * config/ho-hppaosf.h: Delete _IO* macros.  They are defined in
index 8a9430b..f9979de 100644 (file)
@@ -1082,8 +1082,8 @@ s_lcomm (needs_align)
     }
 
 #ifdef TC_MIPS
-#ifdef OBJ_ECOFF
-  /* For MIPS ECOFF, small objects are put in .sbss.  */
+#if defined (OBJ_ECOFF) || defined (OBJ_ELF)
+  /* For MIPS ECOFF or ELF, small objects are put in .sbss.  */
   if (temp <= bfd_get_gp_size (stdoutput))
     bss_seg = subseg_new (".sbss", 1);
 #endif
@@ -2653,7 +2653,6 @@ get_stab_string_offset (string, stabstr_secname)
       subsegT save_subseg;
       char *newsecname;
       segT seg;
-      int aligned;
       char *p;
 
       save_seg = now_seg;