Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.dg / i386-unroll-1.c
blob8ffd2ebe110b693ef57b1e174cd257b18c98b6bd
1 /* PR optimization/8599 */
2 /* { dg-do run { target i?86-*-* } } */
3 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
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);