* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20010329-1.c
blob4d495e1afc8252334076918f52c06e0aae7000d5
1 union u {
2 unsigned char a;
3 double b;
4 };
6 int a;
8 union u foo (void)
10 union u b;
12 if (a)
13 b.a = 1;
14 else
15 b.a = 0;
16 return b;