< prev index next >

test/compiler/intrinsics/object/TestHashCode.java

Print this page

        

@@ -23,14 +23,19 @@
 
 /*
  * @test
  * @bug 8011646
  * @summary SEGV in compiled code with loop predication
- * @run main/othervm  -XX:-TieredCompilation -XX:CompileOnly=TestHashCode.m1,Object.hashCode TestHashCode
  *
+ * @run main/othervm  -XX:-TieredCompilation
+ *      -XX:CompileCommand=compileonly,java.lang.Object::hashCode
+ *      -XX:CompileCommand=compileonly,compiler.intrinsics.object.TestHashCode::m1
+ *      compiler.intrinsics.object.TestHashCode
  */
 
+package compiler.intrinsics.object;
+
 public class TestHashCode {
     static class A {
         int i;
     }
 
< prev index next >