On Thu, 12 Feb 2026 10:25:32 GMT, Andrey Turbanov <[email protected]> wrote:
>> Anton Artemov has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> 8376665: Addressed reviewer's comments.
>
> src/java.base/share/classes/java/lang/FdLibm.java line 3591:
>
>> 3589: int hx;
>> 3590: hx = __HI(x);
>> 3591: if(hx < 0x3ff0_0000) { // x < 1
>> */
>
> Suggestion:
>
> if (hx < 0x3ff0_0000) { // x < 1 */
Fixed.
> src/java.base/share/classes/java/lang/FdLibm.java line 3594:
>
>> 3592: return (x - x) / (x - x);
>> 3593: } else if (hx >= 0x41b0_0000) { // x >
>> 2**28
>> 3594: if(hx >= 0x7ff0_0000) { // x is
>> inf of NaN
>
> Suggestion:
>
> if (hx >= 0x7ff0_0000) { // x is inf of
> NaN
Fixed.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/29488#discussion_r2798480203
PR Review Comment: https://git.openjdk.org/jdk/pull/29488#discussion_r2798480381