aboutsummaryrefslogtreecommitdiffstats
path: root/test/cse2/indexed_addr.c
blob: 30a7c57112b053674bbd2c9a4cb3d7cefb9ef41e (plain)
1
2
3
4
5
6
void foo(int *t) {
  if (t[0] > 4) {
    t[1] ++;
    t[0] --;
  }
}