On Tue, 31 Jan 2023 06:49:28 GMT, Andrey Turbanov <aturba...@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