Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr37617.c
blob: 901b8cabf2254600250b209357f0fe9542db6f0b [
file
] [
log
] [
blame
]
typedef
union
{
char
*
string
;
double
dval
;
float
fval
;
}
yystype
;
char
*
f
(
void
)
{
yystype tok
;
tok
.
dval
=
0
;
return
(
tok
.
string
);
}
char
*
f1
(
void
)
{
yystype tok
;
tok
.
fval
=
0
;
return
(
tok
.
string
);
}