OSDN Git Service

2011-10-10 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 Oct 2011 15:42:28 +0000 (15:42 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 Oct 2011 15:42:28 +0000 (15:42 +0000)
* ipa-split.c (pass_split_functions): Add verification TODOs.
(pass_feedback_split_functions): Likewise.

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

gcc/ChangeLog
gcc/ipa-split.c

index 1c78a67..078c997 100644 (file)
@@ -1,5 +1,10 @@
 2011-10-10  Richard Guenther  <rguenther@suse.de>
 
+       * ipa-split.c (pass_split_functions): Add verification TODOs.
+       (pass_feedback_split_functions): Likewise.
+
+2011-10-10  Richard Guenther  <rguenther@suse.de>
+
        PR middle-end/50195
        * fold-const.c (fold_binary_loc): Canonicalize x*x to pow (x, 2)
        only when optimizing.
index b16cfb3..d1861e9 100644 (file)
@@ -1451,7 +1451,7 @@ struct gimple_opt_pass pass_split_functions =
   0,                                   /* properties_provided */
   0,                                   /* properties_destroyed */
   0,                                   /* todo_flags_start */
-  0                                    /* todo_flags_finish */
+  TODO_verify_all                              /* todo_flags_finish */
  }
 };
 
@@ -1492,6 +1492,6 @@ struct gimple_opt_pass pass_feedback_split_functions =
   0,                                   /* properties_provided */
   0,                                   /* properties_destroyed */
   0,                                   /* todo_flags_start */
-  0                                    /* todo_flags_finish */
+  TODO_verify_all                              /* todo_flags_finish */
  }
 };