aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr59569-2.c
blob: e813b88d857a1102638d44af4e98ce1b5c5d3c80 (plain)
1
2
3
4
5
6
/* PR middle-end/59569 */
void foo (int *a, int b)
{
  for (; b; b--)
    a[b] = 1;
}