* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr37617.c
blob901b8cabf2254600250b209357f0fe9542db6f0b
1 typedef union
3 char *string;
4 double dval;
5 float fval;
6 } yystype;
7 char *f(void)
9 yystype tok;
10 tok.dval = 0;
11 return (tok.string);
13 char *f1(void)
15 yystype tok;
16 tok.fval = 0;
17 return (tok.string);