diff options
Diffstat (limited to 'src/math/sqrtl.c')
-rw-r--r-- | src/math/sqrtl.c | 4 |
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); } |