aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/cond_exp_mini_cse.c
blob: 3a2ce9c3df652840410e1d3b00d02804403fb471 (plain)
1
2
3
4
5
6
int main(int x, int y, int* t) {
  if (x + *t < 7)
    if (y < 7)
      return 421;
  return 0;
}