* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr52891-1.c
blobe695d1cfcc16dc61465fe7a19a8af24a4a3c806e
1 /* PR tree-optimizations/52891 */
3 struct S
5 int a;
6 struct T { unsigned c : 10; } b;
7 } s;
9 void
10 bar (short x, short y, int **p)
12 if ((x && y) + **p)
13 while (1);
16 void
17 foo (int **p)
19 bar (s.a, s.b.c, p);