aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/i386-unroll-1.c
blob: a424b95eba24764488a09d3ad0d72253248ce0d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* PR optimization/8599 */
/* { dg-do run { target i?86-*-* } } */
/* { dg-options "-mtune=k6 -O2 -funroll-loops" } */

extern void exit (int);

void *array[4];

int main ()
{
  int i;
 
  for (i = 0; i < 4; i++)
    array[i] = 0;

  exit (0);
}