OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 930611-1.c
1 float
2 f (float a1)
3 {
4   union { float f; int l; } fl1;
5   fl1.f = a1;
6   return fl1.l ? 1.0 : a1;
7 }