From 7e4dfd69ef05c058d5207f50afa9e4b733f2392c Mon Sep 17 00:00:00 2001 From: nickc Date: Tue, 1 Feb 2000 18:18:10 +0000 Subject: [PATCH] oops - omitted from previous delta fixing UNIQUE_SECTION git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31737 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/mips/iris6gld.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gcc/config/mips/iris6gld.h b/gcc/config/mips/iris6gld.h index 1424021..76559e3 100644 --- a/gcc/config/mips/iris6gld.h +++ b/gcc/config/mips/iris6gld.h @@ -59,23 +59,22 @@ Boston, MA 02111-1307, USA. */ char *name; \ char *string; \ char *prefix; \ - static char *prefixes[4][2] = \ + static char *prefixes[/*4*/3][2] = \ { \ { ".text.", ".gnu.linkonce.t." }, \ { ".rodata.", ".gnu.linkonce.r." }, \ - { ".data.", ".gnu.linkonce.d." }, \ + { ".data.", ".gnu.linkonce.d." } \ /* Do not generate unique sections for uninitialised \ data since we do not have support for this in the \ linker scripts yet... \ - { ".bss.", ".gnu.linkonce.b." } */ \ - { "", "" } \ + , { ".bss.", ".gnu.linkonce.b." } */ \ }; \ \ if (TREE_CODE (DECL) == FUNCTION_DECL) \ sec = 0; \ - else if (DECL_INITIAL (DECL) == 0 \ + /* else if (DECL_INITIAL (DECL) == 0 \ || DECL_INITIAL (DECL) == error_mark_node) \ - sec = 3; \ + sec = 3; */ \ else if (DECL_READONLY_SECTION (DECL, RELOC)) \ sec = 1; \ else \ -- 2.7.4