8299387: CompressedClassPointers.java still fails on ppc with 'Narrow klass shift: 0' missing

Reviewed-by: mdoerr
This commit is contained in:
Matthias Baesken 2022-12-28 14:22:43 +00:00
parent d490f15e3b
commit 6f85a9c9a8

@ -126,7 +126,7 @@ public class CompressedClassPointers {
if (testNarrowKlassBase()) {
if (!(Platform.isAArch64() && Platform.isOSX())) { // see JDK-8262895
output.shouldContain("Narrow klass base: 0x0000000000000000");
if (!Platform.isAArch64() && !Platform.isOSX()) {
if (!Platform.isAArch64() && !Platform.isPPC() && !Platform.isOSX()) {
output.shouldContain("Narrow klass shift: 0");
}
}