summaryrefslogtreecommitdiffstats
path: root/lib/msun
diff options
context:
space:
mode:
authordas <das@FreeBSD.org>2008-03-31 13:11:45 +0000
committerdas <das@FreeBSD.org>2008-03-31 13:11:45 +0000
commit017bbc352e034398a93950c60e9c525a85bb6526 (patch)
treedde9790f7d4b2f9d4a3be79c8397ec90be605553 /lib/msun
parentdc15a186a7ed39bf27ecf5befc1c277a16d699ce (diff)
downloadFreeBSD-src-017bbc352e034398a93950c60e9c525a85bb6526.zip
FreeBSD-src-017bbc352e034398a93950c60e9c525a85bb6526.tar.gz
Remove a (bogus) remnant of debugging this on sparc64.
Diffstat (limited to 'lib/msun')
-rw-r--r--lib/msun/src/e_hypotl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/e_hypotl.c b/lib/msun/src/e_hypotl.c
index a8453df..0c899bf 100644
--- a/lib/msun/src/e_hypotl.c
+++ b/lib/msun/src/e_hypotl.c
@@ -115,7 +115,7 @@ hypotl(long double x, long double y)
if (w>b) {
t1 = a;
union IEEEl2bits uv;
- uv.e = t1; uv.bits.manl &= ~0xffffffffULL; t1 = uv.e;
+ uv.e = t1; uv.bits.manl = 0; t1 = uv.e;
t2 = a-t1;
w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1)));
} else {
OpenPOWER on IntegriCloud