Fix accidental commit
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 23 Mar 2007 23:10:37 +0000 (23:10 +0000)
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 23 Mar 2007 23:10:37 +0000 (23:10 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123169 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ifcvt.c

index 70d4ef4..9df57bb 100644 (file)
@@ -2711,18 +2711,13 @@ cond_move_process_if_block (struct ce_if_block *ce_info)
 static int
 process_if_block (struct ce_if_block * ce_info)
 {
-  /* Only perform the noce transformations before register allocation.
-     They could be made to run later, but this would require a lot of
-     work, and it doesn't seem to be worth it.  */
-  if (! reload_completed)
-    {
-      if (noce_process_if_block (ce_info))
-       return TRUE;
+  if (! reload_completed
+      && noce_process_if_block (ce_info))
+    return TRUE;
 
-      if (HAVE_conditional_move
-         && cond_move_process_if_block (ce_info))
-       return TRUE;
-    }
+  if (HAVE_conditional_move
+      && cond_move_process_if_block (ce_info))
+    return TRUE;
 
   if (HAVE_conditional_execution && reload_completed)
     {