aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2016-05-25 08:52:22 +0000
committerRichard Biener <rguenther@suse.de>2016-05-25 08:52:22 +0000
commitee69c4ff583a50a7e5b66a59f574521a9cc70b38 (patch)
treef62b10a325ea6d2096d140ff2d14a7965b669b3b
parent5d9ba0d785a7eaf7841b9240cde20ebe1d3549ce (diff)
2016-05-25 Richard Biener <rguenther@suse.de>
* timevar.def (TV_TREE_LOOP_IFCVT): Add. * tree-if-conv.c (pass_data_if_conversion): Use it. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@236695 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/timevar.def1
-rw-r--r--gcc/tree-if-conv.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f2a1e5372bd..10b423587bf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2016-05-25 Richard Biener <rguenther@suse.de>
+
+ * timevar.def (TV_TREE_LOOP_IFCVT): Add.
+ * tree-if-conv.c (pass_data_if_conversion): Use it.
+
2016-05-25 Bernd Edlinger <bernd.edlinger@hotmail.de>
* cgraph.c (cgraph_node::get_availability): Fix typo in comment.
diff --git a/gcc/timevar.def b/gcc/timevar.def
index 76b008ec9c1..170ee9a29c8 100644
--- a/gcc/timevar.def
+++ b/gcc/timevar.def
@@ -281,6 +281,7 @@ DEFTIMEVAR (TV_VTABLE_VERIFICATION , "vtable verification")
DEFTIMEVAR (TV_TREE_UBSAN , "tree ubsan")
DEFTIMEVAR (TV_INITIALIZE_RTL , "initialize rtl")
DEFTIMEVAR (TV_GIMPLE_LADDRESS , "address lowering")
+DEFTIMEVAR (TV_TREE_LOOP_IFCVT , "tree loop if-conversion")
/* Everything else in rest_of_compilation not included above. */
DEFTIMEVAR (TV_EARLY_LOCAL , "early local passes")
diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c
index 3bfa69cfb50..fa0cae6fdde 100644
--- a/gcc/tree-if-conv.c
+++ b/gcc/tree-if-conv.c
@@ -2884,7 +2884,7 @@ const pass_data pass_data_if_conversion =
GIMPLE_PASS, /* type */
"ifcvt", /* name */
OPTGROUP_NONE, /* optinfo_flags */
- TV_NONE, /* tv_id */
+ TV_TREE_LOOP_IFCVT, /* tv_id */
( PROP_cfg | PROP_ssa ), /* properties_required */
0, /* properties_provided */
0, /* properties_destroyed */