diff options
author | Richard Biener <rguenther@suse.de> | 2015-07-06 13:12:39 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2015-07-06 13:12:39 +0000 |
commit | aad83b7cbbdde75864d249466fad7c90e3505b2f (patch) | |
tree | 85315d6fde79646322b19b9c079dfdc45b837573 /gcc/tree-vect-loop-manip.c | |
parent | 91f0f975e684fb47640ab65596170f549103ce69 (diff) | |
download | gcc-aad83b7cbbdde75864d249466fad7c90e3505b2f.zip gcc-aad83b7cbbdde75864d249466fad7c90e3505b2f.tar.gz gcc-aad83b7cbbdde75864d249466fad7c90e3505b2f.tar.bz2 |
re PR tree-optimization/66767 (FAIL: gcc.dg/vect/vect-align-1.c execution test)
2015-07-06 Richard Biener <rguenther@suse.de>
PR tree-optimization/66767
* tree-vect-loop-manip.c (vect_create_cond_for_align_checks):
Make sure to build the alignment test on a SSA name without
final alignment info valid only if the alignment test
evaluates to true.
From-SVN: r225454
Diffstat (limited to 'gcc/tree-vect-loop-manip.c')
-rw-r--r-- | gcc/tree-vect-loop-manip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vect-loop-manip.c b/gcc/tree-vect-loop-manip.c index 58d2c7f..56314ed 100644 --- a/gcc/tree-vect-loop-manip.c +++ b/gcc/tree-vect-loop-manip.c @@ -2143,7 +2143,7 @@ vect_create_cond_for_align_checks (loop_vec_info loop_vinfo, bool negative = tree_int_cst_compare (DR_STEP (STMT_VINFO_DATA_REF (stmt_vinfo)), size_zero_node) < 0; tree offset = negative - ? size_int (-TYPE_VECTOR_SUBPARTS (vectype) + 1) : NULL_TREE; + ? size_int (-TYPE_VECTOR_SUBPARTS (vectype) + 1) : size_zero_node; /* create: addr_tmp = (int)(address_of_first_vector) */ addr_base = |