< prev index next >

test/compiler/c1/TestDeoptInt.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

@@ -25,15 +25,19 @@
 /**
  * @test
  * @bug 6769124
  * @summary int value might not be correctly decoded on deopt with c1 on 64 bit
  *
- * @run main/othervm -Xcomp -XX:CompileOnly=TestDeoptInt6769124.m TestDeoptInt6769124
+ * @run main/othervm -Xcomp
+ *      -XX:CompileCommand=compileonly,compiler.c1.TestDeoptInt::m
+ *      compiler.c1.TestDeoptInt
  */
 
-public class TestDeoptInt6769124 {
+package compiler.c1;
 
+public class TestDeoptInt {
+
     static class A {
         volatile int vl;
         A(int v) {
             vl = v;
         }
< prev index next >