Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / gcc.dg / i386-unroll-1.c
blobe681474725a398d5326c31778341d03af8278990
1 /* PR optimization/8599 */
2 /* { dg-do run { target i?86-*-* x86_64-*-* } } */
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);