about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-128/s_logbl.c
diff options
context:
space:
mode:
authorPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-08-02 13:32:06 -0500
committerPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-08-03 11:01:25 -0500
commitcad1d6066fa52caa89d15b21b047178d9a8c25f3 (patch)
tree0bf1b86355a222248904a1a2842e40a2017a5325 /sysdeps/ieee754/ldbl-128/s_logbl.c
parentb381a388dc1e02223e1ac55948380f1e4427be4c (diff)
downloadglibc-cad1d6066fa52caa89d15b21b047178d9a8c25f3.tar.gz
glibc-cad1d6066fa52caa89d15b21b047178d9a8c25f3.tar.xz
glibc-cad1d6066fa52caa89d15b21b047178d9a8c25f3.zip
Remove tacit double usage in ldbl-128
There is quiet truncation to double arithmetic in several
files.  I noticed them when building ldbl-128 in a
soft-fp context.  This did not change any test results.
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_logbl.c')
-rw-r--r--sysdeps/ieee754/ldbl-128/s_logbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_logbl.c b/sysdeps/ieee754/ldbl-128/s_logbl.c
index 3ba67b7bd2..b7c1ca15d7 100644
--- a/sysdeps/ieee754/ldbl-128/s_logbl.c
+++ b/sysdeps/ieee754/ldbl-128/s_logbl.c
@@ -34,7 +34,7 @@ __logbl (long double x)
   GET_LDOUBLE_WORDS64 (hx, lx, x);
   hx &= 0x7fffffffffffffffLL;	/* high |x| */
   if ((hx | lx) == 0)
-    return -1.0 / fabs (x);
+    return -1.0 / fabsl (x);
   if (hx >= 0x7fff000000000000LL)
     return x * x;
   if ((ex = hx >> 48) == 0)	/* IEEE 754 logb */