Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / ifreg.c
blob9e2f9562e38510a574df33e37b9c6a2ae14a2dd5
1 union foo
3 float f;
4 int i;
5 };
7 foo (int a, float c)
9 union foo b;
10 b.i = a;
11 return b.f + c;