]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/tree-ssa-loop-manip.c
ENABLE_CHECKING refactoring: remove remaining occurrences
[gcc.git] / gcc / tree-ssa-loop-manip.c
index db797cc0b67ed9d10950111652eda3a468a287cc..b614412e3f12c3ccdb7c55ac1f8446124278342b 100644 (file)
@@ -616,14 +616,10 @@ rewrite_into_loop_closed_ssa_1 (bitmap changed_bbs, unsigned update_flag,
 
   /* If the pass has caused the SSA form to be out-of-date, update it
      now.  */
-  if (update_flag == 0)
-    {
-#ifdef ENABLE_CHECKING
-      verify_ssa (true, true);
-#endif
-    }
-  else
+  if (update_flag != 0)
     update_ssa (update_flag);
+  else if (flag_checking)
+    verify_ssa (true, true);
 
   bitmap_obstack_initialize (&loop_renamer_obstack);
 
This page took 0.026124 seconds and 5 git commands to generate.