From: Richard Biener Date: Mon, 9 Nov 2020 13:03:14 +0000 (+0100) Subject: tree-optimization/97753 - fix SLP induction vect X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f5761c318a5a973ba2e4e5b09a5213f4e3ad0570;p=gcc.git tree-optimization/97753 - fix SLP induction vect This fixes updating of the step vectors when filling up to group_size. 2020-11-09 Richard Biener PR tree-optimization/97753 * tree-vect-loop.c (vectorizable_induction): Fill vec_steps when CSEing inside the group. * gcc.dg/vect/pr97753.c: New testcase. --- diff --git a/gcc/testsuite/gcc.dg/vect/pr97753.c b/gcc/testsuite/gcc.dg/vect/pr97753.c new file mode 100644 index 00000000000..e49a8487631 --- /dev/null +++ b/gcc/testsuite/gcc.dg/vect/pr97753.c @@ -0,0 +1,10 @@ +/* { dg-do compile } */ +/* { dg-additional-options "-O3" } */ + +long a[6]; +void d(int c) +{ + for (; c; c++) + for (int b = 0; b < 8; b++) + ((char *)&a[c])[b] = c; +} diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c index 0ba37540d5d..977633a3ce3 100644 --- a/gcc/tree-vect-loop.c +++ b/gcc/tree-vect-loop.c @@ -8068,8 +8068,11 @@ vectorizable_induction (loop_vec_info loop_vinfo, nivs = least_common_multiple (group_size, const_nunits) / const_nunits; for (; ivn < nivs; ++ivn) - SLP_TREE_VEC_STMTS (slp_node) - .quick_push (SLP_TREE_VEC_STMTS (slp_node)[0]); + { + SLP_TREE_VEC_STMTS (slp_node) + .quick_push (SLP_TREE_VEC_STMTS (slp_node)[0]); + vec_steps.safe_push (vec_steps[0]); + } } /* Re-use IVs when we can. We are generating further vector