aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/postpass_exp.c
blob: bc234091c3cd44931d93790a1f01c339893463cf (plain)
1
2
3
4
5
6
7
8
9
10
11
long foo(int x, char y, long *t) {
  int z = x / 4096;
  y = x / 256;
  t[0] = t[1] * t[2];
  if (x + z < 7) {
    if (y < 7)
      return 421 + t[0];
  }
  y = y - z;
  return x + y - t[0];
}