From: Iain Sandoe Date: Mon, 12 Dec 2011 08:24:33 +0000 (+0000) Subject: darwin-sections.def (zobj_const_data_section): Fix over- length section name. X-Git-Tag: releases/gcc-4.7.0~1622 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0a5a95f20443fb1677300138e00249ea86c894eb;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1a10485e5f6..9e0e3f0633fc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-12-12 Iain Sandoe + + * config/darwin-sections.def (zobj_const_data_section): Fix over- + length section name. + 2011-12-11 Richard Henderson * config/rs6000/rs6000.c (rs6000_expand_interleave): Use diff --git a/gcc/config/darwin-sections.def b/gcc/config/darwin-sections.def index 61b6f69b1232..3bcb1c059c1a 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)