RFR: JDK-8301392: Port fdlibm log1p to Java [v2]
Joe Darcy
darcy at openjdk.org
Tue Jan 31 19:15:16 UTC 2023
On Tue, 31 Jan 2023 06:49:28 GMT, Andrey Turbanov <aturbanov at openjdk.org> wrote:
>> Joe Darcy has updated the pull request incrementally with one additional commit since the last revision:
>>
>> Implement review feedback.
>
> src/java.base/share/classes/java/lang/FdLibm.java line 911:
>
>> 909: k = 1;
>> 910: if (hx < 0x3FDA827A) { /* x < 0.41422 */
>> 911: if(ax >= 0x3ff00000) { /* x <= -1.0 */
>
> Suggestion:
>
> if (ax >= 0x3ff00000) { /* x <= -1.0 */
Changed; thanks.
-------------
PR: https://git.openjdk.org/jdk/pull/12301
More information about the core-libs-dev
mailing list