< prev index next >

test/compiler/codegen/Test8005033.java

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

@@ -23,14 +23,19 @@
 
 /**
  * @test
  * @bug 8005033
  * @summary On sparcv9, C2's intrinsic for Integer.bitCount(OV) returns wrong result if OV is the result of an operation with int overflow.
- * @run main/othervm -Xcomp -XX:CompileOnly=Test8005033::testBitCount Test8005033
+ *
+ * @run main/othervm -Xcomp
+ *      -XX:CompileCommand=compileony,compiler.codegen.Test8005033::testBitCount
+ *      compiler.codegen.Test8005033
  * @author Richard Reingruber richard DOT reingruber AT sap DOT com
  */
 
+package compiler.codegen;
+
 public class Test8005033 {
     public static int MINUS_ONE = -1;
 
     public static void main(String[] args) {
         System.out.println("EXECUTING test.");
< prev index next >