Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / O3-pr36098.c
blob1c445be9e204a07b82b2402e0a07869145f068a2
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 typedef struct {
5 int iatom[3];
6 int blocknr;
7 } t_sortblock;
9 #define DIM 3
11 void foo (int ncons, t_sortblock *sb, int *iatom)
13 int i, m;
15 for(i=0; (i<ncons); i++,iatom+=3)
16 for(m=0; (m<DIM); m++)
17 iatom[m]=sb[i].iatom[m];
20 /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { xfail *-*-* } } } */
21 /* { dg-final { cleanup-tree-dump "vect" } } */