From 8087c515abd933dd2ae1f86a68be3c9ea6ddbebe Mon Sep 17 00:00:00 2001 From: David Schultz Date: Mon, 31 Mar 2008 13:11:45 +0000 Subject: [PATCH] Remove a (bogus) remnant of debugging this on sparc64. --- lib/msun/src/e_hypotl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msun/src/e_hypotl.c b/lib/msun/src/e_hypotl.c index a8453df102ea..0c899bfd0b8a 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 {