aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-loop.c
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2012-08-15 08:47:13 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2012-08-15 08:47:13 +0000
commit65aee4f39aeabea84b54fececbcd4ed56cd905dc (patch)
treeaaa958c20362db0f36c2a1700f016759880b7491 /gcc/tree-ssa-loop.c
parentde4bd8fa3be2cd347e58e63edf299fdaa1e0947b (diff)
* timevar.def (TV_VARPOOL, TV_WHOPR_WPA_LTRANS_EXEC, TV_LIFE,
TV_LIFE_UPDATE, TV_DF_UREC, TV_INLINE_HEURISTICS, TV_TREE_LINEAR_TRANSFORM, TV_TREE_LOOP_INIT, TV_TREE_LOOP_FINI, TV_VPT, TV_LOCAL_ALLOC, TV_GLOBAL_ALLOC, TV_SEQABSTR): Remove. (TV_IPA_INLINING, TV_FLATTEN_INLINING, TV_EARLY_INLINING, TV_INLINE_PARAMETERS, TV_LOOP_INIT, TV_LOOP_FINI): New. * timevar.c (timevar_print): Make printing width of timevar names more flexible, but enforce maximum length. * ipa-inline.c (pass_early_inline): Use TV_EARLY_INLINING. (pass_ipa_inline): Use TV_IPA_INLINING. * ipa-inline-analysis.c (pass_inline_parameters): Use TV_INLINE_HEURISTICS. * tree-ssa-loop.c (pass_tree_loop_init): No timevar for wrapper pass. (pass_tree_loop_done): Likewise. * final.c (pass_shorten_branches): Use TV_SHORTEN_BRANCH. * loop-init.c (loop_optimizer_init): Push/pop TV_LOOP_INIT. (loop_optimizer_finalize): Push/pop TV_LOOP_FINI. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@190409 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop.c')
-rw-r--r--gcc/tree-ssa-loop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-loop.c b/gcc/tree-ssa-loop.c
index 33c00f0fd21..6dc64b036c1 100644
--- a/gcc/tree-ssa-loop.c
+++ b/gcc/tree-ssa-loop.c
@@ -87,7 +87,7 @@ struct gimple_opt_pass pass_tree_loop_init =
NULL, /* sub */
NULL, /* next */
0, /* static_pass_number */
- TV_TREE_LOOP_INIT, /* tv_id */
+ TV_NONE, /* tv_id */
PROP_cfg, /* properties_required */
PROP_loops, /* properties_provided */
0, /* properties_destroyed */
@@ -659,7 +659,7 @@ struct gimple_opt_pass pass_tree_loop_done =
NULL, /* sub */
NULL, /* next */
0, /* static_pass_number */
- TV_TREE_LOOP_FINI, /* tv_id */
+ TV_NONE, /* tv_id */
PROP_cfg, /* properties_required */
0, /* properties_provided */
0, /* properties_destroyed */