blob: 371c7d569c53d1895a762fae85b430d9beefdb5c [file] [log] [blame]
f ()
{
union
{
signed char c;
double d;
} u;
u.c = 1;
u.c = 1;
return u.c;
}