aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/960514-1.c
blob: 1d38cfd1a0b2858ba2d54d659261af4091239626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct s {
  unsigned long long t[5];
};

void
f (struct s *d, unsigned long long *l)
{
  int i;

  for (i = 0; i < 5; i++)
    d->t[i] += l[i];
}