From af694b57a22e17a237f5daa1f1b84624dda769d6 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sat, 4 Feb 2023 10:50:46 +0100 Subject: Added sqrtl wrapped function (for #503) --- src/wrapped/wrappedlibm_private.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/wrapped/wrappedlibm_private.h b/src/wrapped/wrappedlibm_private.h index 9610b403..5737da84 100755 --- a/src/wrapped/wrappedlibm_private.h +++ b/src/wrapped/wrappedlibm_private.h @@ -426,7 +426,11 @@ GOW(sqrt, dFd) GOW(sqrtf, fFf) GOM(__sqrtf_finite, fFf) GOM(__sqrt_finite, dFd) -// sqrtl // Weak +#ifdef HAVE_LD80BITS +GOW(sqrtl, DFD) +#else +GO2(sqrtl, KFK, sqrt) // Weak +#endif GO(tan, dFd) GOW(tanf, fFf) GOW(tanh, dFd) -- cgit 1.4.1