diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-11-02 23:15:58 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-11-02 23:15:58 +0000 |
commit | efe8ef02b2d6fbca0697d9ec34266884f2a3a680 (patch) | |
tree | 2f98b165e793860043419322228a82612c54fe24 /gas | |
parent | aa14e86394c2bc538e115e9e9e2c911a6e6e8e2d (diff) | |
download | gdb-efe8ef02b2d6fbca0697d9ec34266884f2a3a680.zip gdb-efe8ef02b2d6fbca0697d9ec34266884f2a3a680.tar.gz gdb-efe8ef02b2d6fbca0697d9ec34266884f2a3a680.tar.bz2 |
* 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.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/read.c | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 52af639..bdd147f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -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 @@ -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; |