+2016-09-21 Richard Biener <rguenther@suse.de>
+ Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/77621
+ * tree-vect-data-refs.c (vect_analyze_data_ref_accesses): Split
+ group at non-vectorizable stmts.
+
2016-09-21 Kugan Vivekanandarajah <kuganv@linaro.org>
PR tree-optimization/72835
+2016-09-21 Richard Biener <rguenther@suse.de>
+ Jakub Jelinek <jakub@redhat.com>
+
+ PR tree-optimization/77621
+ * gcc.dg/pr77621.c: New testcase.
+
2016-09-21 Paul Thomas <pault@gcc.gnu.org>
PR fortran/77657
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O3" } */
+/* { dg-additional-options "-mtune=atom -msse2" { target i?86-*-* x86_64-*-* } } */
+
+void
+foo (double *x, int *y)
+{
+ int i;
+ for (i = 0; i < 8; i++)
+ x[i] -= y[i] * x[i + 1];
+}
data_reference_p dra = datarefs_copy[i];
stmt_vec_info stmtinfo_a = vinfo_for_stmt (DR_STMT (dra));
stmt_vec_info lastinfo = NULL;
+ if (! STMT_VINFO_VECTORIZABLE (stmtinfo_a))
+ {
+ ++i;
+ continue;
+ }
for (i = i + 1; i < datarefs_copy.length (); ++i)
{
data_reference_p drb = datarefs_copy[i];
stmt_vec_info stmtinfo_b = vinfo_for_stmt (DR_STMT (drb));
+ if (! STMT_VINFO_VECTORIZABLE (stmtinfo_b))
+ break;
/* ??? Imperfect sorting (non-compatible types, non-modulo
accesses, same accesses) can lead to a group to be artificially