* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr59102.c
blob495473322a5876296aeeefcd93acf294b13b59de
2 int a, b, c, f;
4 struct S
6 int f0;
7 } d, *e;
9 struct S
10 foo ()
12 b = c = b || a == 0 || f % 11;
13 return d;
16 int
17 main ()
19 foo ();
20 if (b);
21 else
23 struct S **g = &e;
24 *g = 0;
25 *e = foo ();
27 return 0;