8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/ifreg.c

13 lines
105 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
union foo
{
float f;
int i;
};
foo (int a, float c)
{
union foo b;
b.i = a;
return b.f + c;
}