* 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.
This commit is contained in:
Ian Lance Taylor 1993-11-02 23:15:58 +00:00
parent aa14e86394
commit efe8ef02b2
2 changed files with 8 additions and 3 deletions

View 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

View 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;