FreeBSD Bugzilla – Attachment 212557 Details for
Bug 244803
java/openjdk11: Fails to build on 13-CURRENT
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for src/java.base/share/native/libfdlibm/e_asin.c
patch-src_java.base_share_native_libfdlibm_e_asin.c (text/plain), 715 bytes, created by
Trond Endrestøl
on 2020-03-20 20:37:17 UTC
(
hide
)
Description:
Patch for src/java.base/share/native/libfdlibm/e_asin.c
Filename:
MIME Type:
Creator:
Trond Endrestøl
Created:
2020-03-20 20:37:17 UTC
Size:
715 bytes
patch
obsolete
>--- src/java.base/share/native/libfdlibm/e_asin.c 2020-01-15 19:29:57.000000000 +0100 >+++ src/java.base/share/native/libfdlibm/e_asin.c 2020-03-20 21:09:32.793788000 +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);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 244803
:
212554
|
212555
|
212557
|
212818