2015-06-09 Richard Biener <rguenther@suse.de>
PR tree-optimization/66419
* tree-vect-slp.c (vect_supported_load_permutation_p): Properly
consider GROUP_GAP when detecting a perfect subchain.
* gcc.dg/vect/bb-slp-37.c: New testcase.
From-SVN: r224271
+2015-06-09 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/66419
+ * tree-vect-slp.c (vect_supported_load_permutation_p): Properly
+ consider GROUP_GAP when detecting a perfect subchain.
+
2015-06-09 Nick Clifton <nickc@redhat.com>
* config/rl78/rl78.c (rl78_select_section): When -mes0 is active
+2015-06-09 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/66419
+ * gcc.dg/vect/bb-slp-37.c: New testcase.
+
2015-06-09 Shiva Chen <shiva0217@gmail.com>
* gcc.target/arm/stl-cond.c: New test.
--- /dev/null
+/* { dg-require-effective-target vect_int } */
+
+#include "tree-vect.h"
+
+extern void abort (void);
+
+int a[16];
+int b[4];
+
+void __attribute__((noinline))
+foo (void)
+{
+ b[0] = a[0];
+ b[1] = a[4];
+ b[2] = a[8];
+ b[3] = a[12];
+}
+
+int main()
+{
+ int i;
+ check_vect ();
+ for (i = 0; i < 16; ++i)
+ {
+ a[i] = i;
+ __asm__ volatile ("");
+ }
+ foo ();
+ if (b[0] != 0 || b[1] != 4 || b[2] != 8 || b[3] != 12)
+ abort ();
+ return 0;
+}
next_load = NULL;
FOR_EACH_VEC_ELT (SLP_TREE_SCALAR_STMTS (node), j, load)
{
- if (j != 0 && next_load != load)
+ if (j != 0
+ && (next_load != load
+ || GROUP_GAP (vinfo_for_stmt (load)) != 1))
{
subchain_p = false;
break;