diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-13 19:36:48 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-13 19:36:48 +0000 |
commit | cbc5cfc9e0b7c24fc1362b99da4331016ae25663 (patch) | |
tree | 35adf3fe734ade37b7e747f8f428d9b3ee91ef4f /gcc/config/mips/iris6.h | |
parent | 8296733b32bfc599773a136fecded1680b9dcf77 (diff) | |
download | gcc-cbc5cfc9e0b7c24fc1362b99da4331016ae25663.tar.gz |
(ASM_OUTPUT_SECTION_NAME): emit @nobits
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38228 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/iris6.h')
-rw-r--r-- | gcc/config/mips/iris6.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/mips/iris6.h b/gcc/config/mips/iris6.h index 07c08bbb78d..3c888531238 100644 --- a/gcc/config/mips/iris6.h +++ b/gcc/config/mips/iris6.h @@ -379,6 +379,8 @@ do { \ fprintf (asm_out_text_file, "\t.section %s,1,6,4,4\n", (NAME)); \ else if ((DECL) && DECL_READONLY_SECTION (DECL, RELOC)) \ fprintf (F, "\t.section %s,1,2,0,8\n", (NAME)); \ + else if (! strcmp (NAME, ".bss")) \ + fprintf (F, "\t.section %s,\"aw\",@nobits\n", (NAME)); \ else \ fprintf (F, "\t.section %s,1,3,0,8\n", (NAME)); \ } while (0) |