aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2011-10-10 15:42:28 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2011-10-10 15:42:28 +0000
commit40b6510f2e15672a4027cbd1395bb75ffd5920bc (patch)
tree97fbe6ddb89c02b0bcd04b49a6cde54192413bd0
parent4d8b88e8f2eecec56b16736f27e708ec20a222cb (diff)
downloadgcc-40b6510f2e15672a4027cbd1395bb75ffd5920bc.zip
gcc-40b6510f2e15672a4027cbd1395bb75ffd5920bc.tar.gz
gcc-40b6510f2e15672a4027cbd1395bb75ffd5920bc.tar.bz2
ipa-split.c (pass_split_functions): Add verification TODOs.
2011-10-10 Richard Guenther <rguenther@suse.de> * ipa-split.c (pass_split_functions): Add verification TODOs. (pass_feedback_split_functions): Likewise. From-SVN: r179756
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/ipa-split.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1c78a67..078c997 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/ipa-split.c b/gcc/ipa-split.c
index b16cfb3..d1861e9 100644
--- a/gcc/ipa-split.c
+++ b/gcc/ipa-split.c
@@ -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 */
}
};