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

11 lines
178 B
C

/* PR c/8002 */
float expm1f(float x) {
union {
float value;
unsigned word;
} sf_u;
sf_u.word = (unsigned) x * 2;
return x + sf_u.value;
}