PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr33329.c
blob5aae9aa7decef90b63bc8caba8d93bd5457a6638
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-vectorize -msse2" } */
4 extern void g (int *);
6 void f (void)
8 int tabs[1024], tabcount;
10 for (tabcount = 1; tabcount <= 8; tabcount += 7)
12 int i;
13 for (i = 0; i < 1024; i++)
14 tabs[i] = i * 12345;
15 g (tabs);