diff options
author | das <das@FreeBSD.org> | 2008-08-03 17:49:05 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-08-03 17:49:05 +0000 |
commit | d95c118b83b9227e11b22b271e9a8fb9f29a0ed7 (patch) | |
tree | 9dbba6e77ce0fe555df0cdbaebdf8176bafc1c7c /lib/msun/src/e_asinl.c | |
parent | e570127fafd3b96a09e858eee7e047700977dc7f (diff) | |
download | FreeBSD-src-d95c118b83b9227e11b22b271e9a8fb9f29a0ed7.zip FreeBSD-src-d95c118b83b9227e11b22b271e9a8fb9f29a0ed7.tar.gz |
Fix some style bogosity from fdlibm.
Diffstat (limited to 'lib/msun/src/e_asinl.c')
-rw-r--r-- | lib/msun/src/e_asinl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/msun/src/e_asinl.c b/lib/msun/src/e_asinl.c index ee7f5af..a85765f 100644 --- a/lib/msun/src/e_asinl.c +++ b/lib/msun/src/e_asinl.c @@ -47,12 +47,12 @@ asinl(long double x) } else if (expt<BIAS-1) { /* |x|<0.5 */ if(expt<ASIN_LINEAR) { /* if |x| is small, asinl(x)=x */ if(huge+x>one) return x;/* return x with inexact if x!=0*/ - } else - t = x*x; - p = P(t); - q = Q(t); - w = p/q; - return x+x*w; + } + t = x*x; + p = P(t); + q = Q(t); + w = p/q; + return x+x*w; } /* 1> |x|>= 0.5 */ w = one-fabsl(x); |