diff options
author | Szabolcs Nagy <nsz@port70.net> | 2013-09-06 20:05:25 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@port70.net> | 2013-09-06 20:05:25 +0000 |
commit | 067aea7c9b688e61f69aed62b9b52e536948b273 (patch) | |
tree | 1c15dc94cd41c2c6d47dcc49ab2309baf3614c4d | |
parent | 9b0fcb441a44456c7b071c7cdaf90403f81ec05a (diff) | |
download | musl-067aea7c9b688e61f69aed62b9b52e536948b273.tar.gz musl-067aea7c9b688e61f69aed62b9b52e536948b273.tar.xz musl-067aea7c9b688e61f69aed62b9b52e536948b273.zip |
math: remove STRICT_ASSIGN from exp2f (see previous commit)
-rw-r--r-- | src/math/exp2f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/exp2f.c b/src/math/exp2f.c index 91738f04..cf6126ee 100644 --- a/src/math/exp2f.c +++ b/src/math/exp2f.c @@ -92,7 +92,7 @@ float exp2f(float x) ix = u.i & 0x7fffffff; if (ix > 0x42fc0000) { /* |x| > 126 */ if (u.i >= 0x43000000 && u.i < 0x80000000) { /* x >= 128 */ - STRICT_ASSIGN(float, x, x * 0x1p127f); + x *= 0x1p127f; return x; } if (u.i >= 0x80000000) { /* x < -126 */ |