Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / unroll-1.c
blobcc8132e207c6a1f4bde2981ebb076a1072b35b31
1 /* PR optimization/8599 */
2 /* { dg-do run } */
3 /* { dg-require-effective-target ia32 } */
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);