< prev index next >

test/compiler/c2/Test5091921.java

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

@@ -25,13 +25,17 @@
 /**
  * @test
  * @bug 5091921
  * @summary Sign flip issues in loop optimizer
  *
- * @run main/othervm -Xcomp -XX:CompileOnly=Test5091921 -XX:MaxInlineSize=1 Test5091921
+ * @run main/othervm -Xcomp -XX:MaxInlineSize=1
+ *    -XX:CompileCommand=compileonly,compiler.c2.Test5091921::*
+ *    compiler.c2.Test5091921
  */
 
+package compiler.c2;
+
 public class Test5091921 {
   private static int result = 0;
 
 
   /* Test for the bug of transforming indx >= MININT to indx > MININT-1 */
< prev index next >