--- src/java.base/share/native/libfdlibm/e_asin.c 2020-01-16 20:50:30.000000000 +0100 +++ src/java.base/share/native/libfdlibm/e_asin.c 2020-03-21 19:06:42.683139000 +0100 @@ -97,12 +97,13 @@ } else if (ix<0x3fe00000) { /* |x|<0.5 */ if(ix<0x3e400000) { /* if |x| < 2**-27 */ if(huge+x>one) return x;/* return x with inexact if x!=0*/ - } else + } else { t = x*x; p = t*(pS0+t*(pS1+t*(pS2+t*(pS3+t*(pS4+t*pS5))))); q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4))); w = p/q; return x+x*w; + } } /* 1> |x|>= 0.5 */ w = one-fabs(x);