aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/var-expand2.c
blob: 499de55cb899891a46fbe3f747baf3795d4efcf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* { dg-do run } */
/* { dg-options "-O2 -funroll-loops -ffast-math -fvariable-expansion-in-unroller" } */

extern void abort (void);

float array[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };

int
foo (int n)
{
  unsigned i;
  float accum = 0;

  for (i = 0; i < n; i++)
    accum += array[i];

  if (accum != 55)
    abort ();

  return 0;
}

int
main (void)
{
  return foo (10);
}