2012-04-02 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Apr 2012 11:59:47 +0000 (11:59 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Apr 2012 11:59:47 +0000 (11:59 +0000)
PR middle-end/52803
* loop-init.c (gate_handle_loop2): Destroy loops here if
we don't enter RTL loop optimizers.

* gcc.dg/pr52803.c: New testcase.

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

gcc/ChangeLog
gcc/loop-init.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr52803.c [new file with mode: 0644]

index e5abe45..ef6425c 100644 (file)
@@ -1,3 +1,9 @@
+2012-04-02  Richard Guenther  <rguenther@suse.de>
+
+       PR middle-end/52803
+       * loop-init.c (gate_handle_loop2): Destroy loops here if
+       we don't enter RTL loop optimizers.
+
 2012-04-02  Uros Bizjak  <ubizjak@gmail.com>
 
        Partially revert:
index b8d7b7e..03f8f61 100644 (file)
@@ -158,15 +158,24 @@ loop_optimizer_finalize (void)
 static bool
 gate_handle_loop2 (void)
 {
-  return (optimize > 0
-         && (flag_move_loop_invariants
-              || flag_unswitch_loops
-              || flag_peel_loops
-              || flag_unroll_loops
+  if (optimize > 0
+      && (flag_move_loop_invariants
+         || flag_unswitch_loops
+         || flag_peel_loops
+         || flag_unroll_loops
 #ifdef HAVE_doloop_end
-             || (flag_branch_on_count_reg && HAVE_doloop_end)
+         || (flag_branch_on_count_reg && HAVE_doloop_end)
 #endif
-             ));
+        ))
+    return true;
+  else
+    {
+      /* No longer preserve loops, remove them now.  */
+      cfun->curr_properties &= ~PROP_loops;
+      if (current_loops)
+       loop_optimizer_finalize ();
+      return false;
+    } 
 }
 
 struct rtl_opt_pass pass_loop2 =
index bfad9a7..2d95e0e 100644 (file)
@@ -1,3 +1,8 @@
+2012-04-02  Richard Guenther  <rguenther@suse.de>
+
+       PR middle-end/52803
+       * gcc.dg/pr52803.c: New testcase.
+
 2012-04-02  Dodji Seketeli  <dodji@redhat.com>
 
        PR c++/40942
diff --git a/gcc/testsuite/gcc.dg/pr52803.c b/gcc/testsuite/gcc.dg/pr52803.c
new file mode 100644 (file)
index 0000000..6774b0c
--- /dev/null
@@ -0,0 +1,4 @@
+/* { dg-do compile } */
+/* { dg-options "-O -fno-move-loop-invariants" } */
+
+int main () { return 0; }