aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr55350.c
blob: f10daeae50208b521b482b98872e287bb33af420 (plain)
1
2
3
4
5
6
7
8
void
foo (__INTPTR_TYPE__ x, __INTPTR_TYPE__ y)
{
  int i;
  void **a = (void *)  (8UL * (x / 8UL));
  for (i = 0; i < x; i++)
    a[i] = (void *) y;
}