aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/postpass_alternate_str.c
blob: 99c50d7d24f26633feba7e7a11c65f5348a1a004 (plain)
1
2
3
4
5
6
7
8
9
10
11
long a;
short *b;
void c() {
  long d = &a;
  char e = 0;
  long f[4] = {&e};
  if (*b)
    if (c) {
      long g = &d;
    }
}