* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr41282.c
blob3a0f02d63ab10219658fbc83e214c4a25c4ddfe5
1 struct S
3 unsigned int iu;
4 };
6 union U
8 struct S s;
9 signed int is;
12 extern signed int bar ();
14 struct S foo (void)
16 union U u;
18 u.is = bar ();
19 return u.s;