FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 930611-1.c
blobc216c096523217b92213ddb2ef08f1aac2d1ecbe
1 float
2 f (float a1)
4 union { float f; int l; } fl1;
5 fl1.f = a1;
6 return fl1.l ? 1.0 : a1;