diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-15 15:25:14 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-15 15:25:48 +0100 |
commit | 3492ad65236209e741ca3641789efeaa22a6b8a4 (patch) | |
tree | 2db061bafcebcac423ca7deeb152435c44944419 /modules/fdlibm/src/e_asin.cpp | |
parent | 2057abd196545ddf8c85ab83e7d220367af8b276 (diff) | |
parent | 59f4de4c45e126f5f20633808ce28548d5879b16 (diff) | |
download | UXP-3492ad65236209e741ca3641789efeaa22a6b8a4.tar UXP-3492ad65236209e741ca3641789efeaa22a6b8a4.tar.gz UXP-3492ad65236209e741ca3641789efeaa22a6b8a4.tar.lz UXP-3492ad65236209e741ca3641789efeaa22a6b8a4.tar.xz UXP-3492ad65236209e741ca3641789efeaa22a6b8a4.zip |
Merge branch 'fdlibm-work'
This resolves #1291
Diffstat (limited to 'modules/fdlibm/src/e_asin.cpp')
-rw-r--r-- | modules/fdlibm/src/e_asin.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/fdlibm/src/e_asin.cpp b/modules/fdlibm/src/e_asin.cpp index 396f49449..e896bde9e 100644 --- a/modules/fdlibm/src/e_asin.cpp +++ b/modules/fdlibm/src/e_asin.cpp @@ -6,7 +6,7 @@ * * Developed at SunSoft, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this - * software is freely granted, provided that this notice + * software is freely granted, provided that this notice * is preserved. * ==================================================== */ @@ -44,6 +44,7 @@ * */ +#include <cmath> #include <float.h> #include "math_private.h" @@ -95,7 +96,7 @@ __ieee754_asin(double x) t = w*0.5; p = t*(pS0+t*(pS1+t*(pS2+t*(pS3+t*(pS4+t*pS5))))); q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4))); - s = sqrt(t); + s = std::sqrt(t); if(ix>=0x3FEF3333) { /* if |x| > 0.975 */ w = p/q; t = pio2_hi-(2.0*(s+s*w)-pio2_lo); |