Commit c3b4b410 by Olivier Hainque Committed by Olivier Hainque

varasm.c (default_section_type_flags): Flag .persistent.bss sections as SECTION_BSS.

2014-09-19  Olivier Hainque  <hainque@adacore.com>

        * varasm.c (default_section_type_flags): Flag .persistent.bss
        sections as SECTION_BSS.

From-SVN: r215376
parent 553130b0
2014-09-19 Olivier Hainque <hainque@adacore.com>
* varasm.c (default_section_type_flags): Flag .persistent.bss
sections as SECTION_BSS.
2014-09-19 Nick Clifton <nickc@redhat.com>
* config/rl78/rl78.c (rl78_expand_epilogue): Generate a USE of the
......@@ -6063,6 +6063,7 @@ default_section_type_flags (tree decl, const char *name, int reloc)
if (strcmp (name, ".bss") == 0
|| strncmp (name, ".bss.", 5) == 0
|| strncmp (name, ".gnu.linkonce.b.", 16) == 0
|| strcmp (name, ".persistent.bss") == 0
|| strcmp (name, ".sbss") == 0
|| strncmp (name, ".sbss.", 6) == 0
|| strncmp (name, ".gnu.linkonce.sb.", 17) == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment