diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-05-30 23:04:52 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-05-30 23:04:52 +0000 |
commit | b95bee134d2fc39c038f7af4113a9c2278a1e052 (patch) | |
tree | c66bb088ad6b4882f7c059fa5dda75f980f0c6d9 | |
parent | 0017655509ac91752827bc649a6c525295352344 (diff) | |
download | gdb-b95bee134d2fc39c038f7af4113a9c2278a1e052.zip gdb-b95bee134d2fc39c038f7af4113a9c2278a1e052.tar.gz gdb-b95bee134d2fc39c038f7af4113a9c2278a1e052.tar.bz2 |
* read.c (s_lcomm): Set section flags for .sbss section.
-rw-r--r-- | gas/ChangeLog | 13 | ||||
-rw-r--r-- | gas/read.c | 5 |
2 files changed, 18 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index aa797a5..938a181 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,16 @@ +Thu May 30 19:00:19 1996 Ian Lance Taylor <ian@cygnus.com> + + * read.c (s_lcomm): Set section flags for .sbss section. + + * config/tc-mips.c (mips_64): New static variable. + (mips_target_format): If mips_64, return elf64 targets rather than + elf32 ones. + (md_longopts): Add "32" and "64". + (md_parse_option): Handle -32 and -64. + (md_show_usage): Mention -32 and -64. + (cons_fix_new_mips): If mips_64, don't convert an 8 byte reloc to + a 4 byte one. + Thu May 30 10:36:19 1996 Michael Meissner <meissner@tiktok.cygnus.com> * config/tc-ppc.c (comment_chars): Make '!' a comment character @@ -1821,6 +1821,11 @@ s_lcomm (needs_align) { bss_seg = subseg_new (".sbss", 1); seg_info (bss_seg)->bss = 1; +#ifdef BFD_ASSEMBLER + if (! bfd_set_section_flags (stdoutput, bss_seg, SEC_ALLOC)) + as_warn ("error setting flags for \".sbss\": %s", + bfd_errmsg (bfd_get_error ())); +#endif } } #endif |