X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fsqrtl.c;h=83a8f80c9984dc7b02e2de6d73f87ed58b566b8b;hb=64d0e86576ef1d33e996a926d6a02d38fb88a768;hp=0645cca0cf95cdf23afee4cd03b87ca61fa88f62;hpb=da5d89d42fb47c648fb83645e5e4a55bae907032;p=musl 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); }