diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-27 12:43:08 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-27 12:43:08 +0000 |
commit | 5f34746b7a7e45e8c210e942b64e6d0cebc8d3c8 (patch) | |
tree | da526d98eea90324d9e4b981ceee00d98a877f94 /gcc/loop-init.c | |
parent | 084950eeeee79a63fd7d3e54ce5b74fc5ce35aa4 (diff) | |
download | gcc-5f34746b7a7e45e8c210e942b64e6d0cebc8d3c8.tar.gz |
2009-11-27 Richard Guenther <rguenther@suse.de>
* timevar.def (TV_LOOP_MOVE_INVARIANTS, TV_LOOP_UNSWITCH,
TV_LOOP_UNROLL, TV_LOOP_DOLOOP): New timevars.
* loop-init.c (pass_rtl_move_loop_invariants): Use
TV_LOOP_MOVE_INVARIANTS.
(pass_rtl_unswitch): Use TV_LOOP_UNSWITCH.
(pass_rtl_unroll_and_peel): Use TV_LOOP_UNROLL.
(pass_rtl_doloop): Use TV_LOOP_DOLOOP.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154703 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop-init.c')
-rw-r--r-- | gcc/loop-init.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/loop-init.c b/gcc/loop-init.c index da01f04879e..854bb970879 100644 --- a/gcc/loop-init.c +++ b/gcc/loop-init.c @@ -265,7 +265,7 @@ struct rtl_opt_pass pass_rtl_move_loop_invariants = NULL, /* sub */ NULL, /* next */ 0, /* static_pass_number */ - TV_LOOP, /* tv_id */ + TV_LOOP_MOVE_INVARIANTS, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ @@ -302,7 +302,7 @@ struct rtl_opt_pass pass_rtl_unswitch = NULL, /* sub */ NULL, /* next */ 0, /* static_pass_number */ - TV_LOOP, /* tv_id */ + TV_LOOP_UNSWITCH, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ @@ -350,7 +350,7 @@ struct rtl_opt_pass pass_rtl_unroll_and_peel_loops = NULL, /* sub */ NULL, /* next */ 0, /* static_pass_number */ - TV_LOOP, /* tv_id */ + TV_LOOP_UNROLL, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ @@ -391,7 +391,7 @@ struct rtl_opt_pass pass_rtl_doloop = NULL, /* sub */ NULL, /* next */ 0, /* static_pass_number */ - TV_LOOP, /* tv_id */ + TV_LOOP_DOLOOP, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ |