OSDN Git Service

2008-09-04 Samuel Tardieu <sam@rfc1149.net>
authorjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Sep 2008 23:32:05 +0000 (23:32 +0000)
committerjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Sep 2008 23:32:05 +0000 (23:32 +0000)
PR target/32783
* config/rs6000/rs6000.c (optimization_options): Remove check of
flag_toplevel_order.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140013 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index 531589d..1a18657 100644 (file)
@@ -1,3 +1,9 @@
+2008-09-04  Samuel Tardieu  <sam@rfc1149.net>
+
+       PR target/32783
+       * config/rs6000/rs6000.c (optimization_options): Remove check of
+       flag_toplevel_order.
+
 2008-09-04  Adam Nemet  <anemet@caviumnetworks.com>
 
        * config/mips/mips.h (ISA_HAS_SEQ_SNE): New macro.
index 934ea8f..cdeb1c9 100644 (file)
@@ -2179,11 +2179,8 @@ optimization_options (int level ATTRIBUTE_UNUSED, int size ATTRIBUTE_UNUSED)
 
   /* Enable section anchors by default.
      Skip section anchors for Objective C and Objective C++
-     until front-ends fixed.
-     Do not enable section anchors without toplevel reorder.  */
-  if (!TARGET_MACHO
-      && lang_hooks.name[4] != 'O'
-      && flag_toplevel_reorder != 0)
+     until front-ends fixed.  */
+  if (!TARGET_MACHO && lang_hooks.name[4] != 'O')
     flag_section_anchors = 2;
 }