aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIain Sandoe <iains@gcc.gnu.org>2011-12-12 08:24:33 +0000
committerIain Sandoe <iains@gcc.gnu.org>2011-12-12 08:24:33 +0000
commit0a5a95f20443fb1677300138e00249ea86c894eb (patch)
tree09c76ac01069660ef4b8a2ada4da92cd6e5dfb69
parent593ba58102170dc98ac9307c271034bb146a8f9f (diff)
downloadgcc-0a5a95f20443fb1677300138e00249ea86c894eb.zip
gcc-0a5a95f20443fb1677300138e00249ea86c894eb.tar.gz
gcc-0a5a95f20443fb1677300138e00249ea86c894eb.tar.bz2
darwin-sections.def (zobj_const_data_section): Fix over- length section name.
gcc: * config/darwin-sections.def (zobj_const_data_section): Fix over- length section name. From-SVN: r182220
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/darwin-sections.def2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e1a1048..9e0e3f06 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2011-12-12 Iain Sandoe <iains@gcc.gnu.org>
+
+ * config/darwin-sections.def (zobj_const_data_section): Fix over-
+ length section name.
+
2011-12-11 Richard Henderson <rth@redhat.com>
* config/rs6000/rs6000.c (rs6000_expand_interleave): Use
diff --git a/gcc/config/darwin-sections.def b/gcc/config/darwin-sections.def
index 61b6f69..3bcb1c0 100644
--- a/gcc/config/darwin-sections.def
+++ b/gcc/config/darwin-sections.def
@@ -76,7 +76,7 @@ DEF_SECTION (const_data_coal_section, SECTION_NO_ANCHOR,
".section __DATA,__const_coal,coalesced", 0)
/* Place to put zero-sized to avoid issues with section anchors. */
DEF_SECTION (zobj_const_data_section, SECTION_NO_ANCHOR,
- ".section\t__DATA,__zobj_const_data", 0)
+ ".section\t__DATA,__zobj_cnst_data", 0)
/* Strings and other literals. */
DEF_SECTION (cstring_section, SECTION_MERGE | SECTION_STRINGS, ".cstring", 0)