< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/VerifyBailoutUsage.java

Print this page

        

@@ -71,11 +71,11 @@
         }
         return false;
     }
 
     @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");
         String holderUnqualified = caller.format("%h");
         String packageName = holderQualified.substring(0, holderQualified.length() - holderUnqualified.length() - 1);

@@ -90,9 +90,8 @@
                                         RetryableBailoutException.class.getName());
                     }
                 }
             }
         }
-        return true;
     }
 
 }
< prev index next >