diff options
author | irar <irar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-31 10:43:38 +0000 |
---|---|---|
committer | irar <irar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-31 10:43:38 +0000 |
commit | f9e29128a0ef05ab9c04071f6575594eb613ec88 (patch) | |
tree | 3311ee5c1c22d52a474a58a8ad0683ae5dc788f9 /gcc/tree-vect-loop.c | |
parent | 4872d196208cce0100dbbd946c8f70cea7bb1688 (diff) | |
download | gcc-f9e29128a0ef05ab9c04071f6575594eb613ec88.tar.gz |
* tree-vect-loop-manip.c (slpeel_update_phi_nodes_for_guard1): Don't
mark phis for renaming.
* tree-vectorizer.c (vect_memsyms_to_rename): Remove.
(vectorize_loops): Don't allocate and free vect_memsyms_to_rename.
Call mark_sym_for_renaming.
* tree-vectorizer.h (vect_memsyms_to_rename): Remove.
* tree-vect-loop.c (vect_transform_loop): Remove vect_memsyms_to_rename
initialization and a call to mark_set_for_renaming.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148013 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-vect-loop.c')
-rw-r--r-- | gcc/tree-vect-loop.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c index 33b0a9d5796..9756a941dc0 100644 --- a/gcc/tree-vect-loop.c +++ b/gcc/tree-vect-loop.c @@ -3654,10 +3654,6 @@ vect_transform_loop (loop_vec_info loop_vinfo) !do_peeling_for_loop_bound, &cond_expr, &cond_expr_stmt_list); - /* CHECKME: we wouldn't need this if we called update_ssa once - for all loops. */ - bitmap_zero (vect_memsyms_to_rename); - /* If the loop has a symbolic number of iterations 'n' (i.e. it's not a compile time constant), or it is a constant that doesn't divide by the vectorization factor, then an epilog loop needs to be created. @@ -3812,8 +3808,6 @@ vect_transform_loop (loop_vec_info loop_vinfo) slpeel_make_loop_iterate_ntimes (loop, ratio); - mark_set_for_renaming (vect_memsyms_to_rename); - /* The memory tags and pointers in vectorized statements need to have their SSA forms updated. FIXME, why can't this be delayed until all the loops have been transformed? */ |