diff options
author | Andreas Schwab <schwab@suse.de> | 2013-07-17 14:53:24 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2013-08-13 09:45:02 +0200 |
commit | ca0a6bc4c5c53aa6c4a735c36336408a06b8cd89 (patch) | |
tree | fde38f49e9ff8e251fc3a4c9a8d5f194ba6decbf /sysdeps | |
parent | 6c1fd795711bb510cffaab5ad2ab2739bb8db210 (diff) | |
download | glibc-ca0a6bc4c5c53aa6c4a735c36336408a06b8cd89.tar.gz glibc-ca0a6bc4c5c53aa6c4a735c36336408a06b8cd89.tar.xz glibc-ca0a6bc4c5c53aa6c4a735c36336408a06b8cd89.zip |
Fix cbrtl for ldbl-96
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ieee754/ldbl-96/s_cbrtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-96/s_cbrtl.c b/sysdeps/ieee754/ldbl-96/s_cbrtl.c index b481c84eb0..e6b2f2540e 100644 --- a/sysdeps/ieee754/ldbl-96/s_cbrtl.c +++ b/sysdeps/ieee754/ldbl-96/s_cbrtl.c @@ -45,7 +45,7 @@ __cbrtl (long double x) int xe; /* Reduce X. XM now is an range 1.0 to 0.5. */ - xm = __frexpl (fabs (x), &xe); + xm = __frexpl (fabsl (x), &xe); /* If X is not finite or is null return it (with raising exceptions if necessary. |