aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/ic.c
blob: 05ae9722a73ae6a696696415ce4868c2bfcf3394 (plain)
1
2
3
4
5
6
7
8
int
foo (int *ip, int a)
{
  a++;
  if (a < ip[a])
    return 1;
  return 0;
}