Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / unroll-1.c
blob8cf19c4beaf0021a6b64608472ea873d2a871281
1 /* PR optimization/8599 */
2 /* { dg-do run } */
3 /* { dg-require-effective-target ilp32 } */
4 /* { dg-options "-mtune=k6 -O2 -funroll-loops" } */
6 extern void exit (int);
8 void *array[4];
10 int main ()
12 int i;
14 for (i = 0; i < 4; i++)
15 array[i] = 0;
17 exit (0);