1/* { dg-do compile } */
2/* { dg-options "-O2 -ftree-vectorize -msse2" } */
3/* { dg-require-effective-target sse2 } */
4
5extern void g (int *);
6
7void f (void)
8{
9  int tabs[8], tabcount;
10
11  for (tabcount = 1; tabcount <= 8; tabcount += 7)
12    {
13      int i;
14      for (i = 0; i < 8; i++)
15	tabs[i] = i * 2;
16      g (tabs);
17    }
18}
19
20