On Wed, 8 Mar 2023 01:30:58 GMT, Joe Darcy <da...@openjdk.org> wrote:

> Quick port of IEEEremainder; sorry for missing this earlier. Will add 
> targeted tests in a follow-up fix.

src/java.base/share/classes/java/lang/FdLibm.java line 3437:

> 3435:                 return Zero[sx>>>31]; // unsigned shift
> 3436:             while(Integer.compareUnsigned(hx, 0x00100000) < 0) {        
>   /* normalize x */
> 3437:                 hx = hx+hx+(lx>>31); lx = lx+lx;

Should be `>>>`

-------------

PR: https://git.openjdk.org/jdk/pull/12915

Reply via email to