diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-13 23:33:37 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-13 23:33:37 +0000 |
commit | 35598c58e4e8f36c8ac68703435a290f11ec6b9e (patch) | |
tree | ee5697c8c0cf817d6a887a8a3077d59a53bb3387 /gcc/config/elfos.h | |
parent | 6d9f0d567a6480fc411f48a615b1d4b4d91418a3 (diff) | |
download | gcc-35598c58e4e8f36c8ac68703435a290f11ec6b9e.tar.gz |
2001-07-13 H.J. Lu (hjl@gnu.org)
* config/elfos.h (UNIQUE_SECTION): Enable .bss section with
the correct patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44001 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/elfos.h')
-rw-r--r-- | gcc/config/elfos.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/gcc/config/elfos.h b/gcc/config/elfos.h index f3abe469b81..eef41150047 100644 --- a/gcc/config/elfos.h +++ b/gcc/config/elfos.h @@ -348,22 +348,19 @@ dtors_section () \ const char *name; \ char *string; \ const char *prefix; \ - static const char *prefixes[/*4*/3][2] = \ + static const char *prefixes[4][2] = \ { \ { ".text.", ".gnu.linkonce.t." }, \ { ".rodata.", ".gnu.linkonce.r." }, \ - { ".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." } */ \ + { ".data.", ".gnu.linkonce.d." }, \ + { ".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 \ |