diff options
author | Ira Rosen <ira.rosen@linaro.org> | 2011-05-18 11:09:44 +0000 |
---|---|---|
committer | Ira Rosen <irar@gcc.gnu.org> | 2011-05-18 11:09:44 +0000 |
commit | e14c1050008ecece4bff253a54eac0f15a6467bb (patch) | |
tree | 76686ccad74a56a2bd47836756642d4c2e2860f1 /gcc/tree-vect-loop.c | |
parent | 51c213f79189dd3527d1f66137c57bc4e68ec2d1 (diff) | |
download | gcc-e14c1050008ecece4bff253a54eac0f15a6467bb.zip gcc-e14c1050008ecece4bff253a54eac0f15a6467bb.tar.gz gcc-e14c1050008ecece4bff253a54eac0f15a6467bb.tar.bz2 |
tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Use new names for group elements access.
* tree-vect-loop-manip.c (vect_create_cond_for_alias_checks): Use new
names for group elements access.
* tree-vectorizer.h (struct _stmt_vec_info): Use interleaving info for
reduction chains as well. Remove data reference and interleaving
related words from the fields names.
* tree-vect-loop.c (vect_transform_loop): Use new names for group
elements access.
* tree-vect-data-refs.c (vect_get_place_in_interleaving_chain,
vect_insert_into_interleaving_chain, vect_update_interleaving_chain,
vect_update_interleaving_chain, vect_same_range_drs,
vect_analyze_data_ref_dependence, vect_update_misalignment_for_peel,
vect_verify_datarefs_alignment, vector_alignment_reachable_p,
vect_peeling_hash_get_lowest_cost, vect_enhance_data_refs_alignment,
vect_analyze_group_access, vect_analyze_data_ref_access,
vect_create_data_ref_ptr, vect_transform_strided_load,
vect_record_strided_load_vectors): Likewise.
* tree-vect-stmts.c (vect_model_simple_cost, vect_model_store_cost,
vect_model_load_cost, vectorizable_store, vectorizable_load,
vect_remove_stores, new_stmt_vec_info): Likewise.
* tree-vect-slp.c (vect_build_slp_tree,
vect_supported_slp_permutation_p, vect_analyze_slp_instance): Likewise.
From-SVN: r173855
Diffstat (limited to 'gcc/tree-vect-loop.c')
-rw-r--r-- | gcc/tree-vect-loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c index 8f3b8e6..d786e67 100644 --- a/gcc/tree-vect-loop.c +++ b/gcc/tree-vect-loop.c @@ -4924,7 +4924,7 @@ vect_transform_loop (loop_vec_info loop_vinfo) /* Interleaving. If IS_STORE is TRUE, the vectorization of the interleaving chain was completed - free all the stores in the chain. */ - vect_remove_stores (DR_GROUP_FIRST_DR (stmt_info)); + vect_remove_stores (GROUP_FIRST_ELEMENT (stmt_info)); gsi_remove (&si, true); continue; } |