--- old/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyBailoutUsage.java 2019-03-28 07:36:48.292486431 +0100 +++ new/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyBailoutUsage.java 2019-03-28 07:36:47.912483892 +0100 @@ -73,7 +73,7 @@ } @Override - protected boolean verify(StructuredGraph graph, PhaseContext context) { + protected void verify(StructuredGraph graph, PhaseContext context) { final ResolvedJavaType bailoutType = context.getMetaAccess().lookupJavaType(BailoutException.class); ResolvedJavaMethod caller = graph.method(); String holderQualified = caller.format("%H"); @@ -92,7 +92,6 @@ } } } - return true; } }