Commit f2bf5da8 by Richard Henderson

New.

From-SVN: r57657
parent b5371c18
/* 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment