rt_gccstream/gcc/testsuite/gcc.c-torture/compile/991026-1.c

14 lines
134 B
C

void something_f(float);
int foo(void)
{
union
{
float f;
double d;
} u, *pu = &u;
u.f = 1.0;
something_f(u.f);
}