summaryrefslogtreecommitdiff
path: root/src/math/sqrtl.c
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2013-09-04 15:54:02 +0000
committerSzabolcs Nagy <nsz@port70.net>2013-09-05 11:30:08 +0000
commitaa0c4a204e28cfc90a9ee955691a6cbe014c9fde (patch)
treee75c43e934d087e203dc999ba75168ee78e6ee7b /src/math/sqrtl.c
parent2eaed464e2080d8321d3903b71086a1ecfc4ee4a (diff)
downloadmusl-aa0c4a204e28cfc90a9ee955691a6cbe014c9fde.tar.gz
math: long double fix (use ldshape union)
* use new ldshape union consistently * add ld128 support to frexpl * simplify sqrtl comment (ld64 is not just arm)
Diffstat (limited to 'src/math/sqrtl.c')
-rw-r--r--src/math/sqrtl.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/math/sqrtl.c b/src/math/sqrtl.c
index 0645cca0..83a8f80c 100644
--- a/src/math/sqrtl.c
+++ b/src/math/sqrtl.c
@@ -2,8 +2,6 @@
long double sqrtl(long double x)
{
- /* FIXME: implement sqrtl in C. At least this works for now on
- * ARM (which uses ld64), the only arch without sqrtl asm
- * that's supported so far. */
+ /* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
return sqrt(x);
}