Relates :
|
The test api/java_lang/Math/rintround is failing on PPC64 platforms when running with -Xcomp -XX:-TieredCompilation. C2 uses frin and xvrdpi instructions which don't use the required rounding mode. Rounding mode "RoundToDPIntegerNearEven" needs to be used. See https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#rint-double-
|