xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/20020930-1.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 /* PR c/8002 */
2 
expm1f(float x)3 float expm1f(float x) {
4      union {
5          float value;
6          unsigned word;
7      } sf_u;
8      sf_u.word = (unsigned) x * 2;
9      return x + sf_u.value;
10 }
11