< prev index next >

test/compiler/loopopts/Test6860469.java

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

@@ -25,15 +25,19 @@
 /**
  * @test
  * @bug 6860469
  * @summary remix_address_expressions reshapes address expression with bad control
  *
- * @run main/othervm -Xcomp -XX:CompileOnly=Test.C Test
+ * @run main/othervm -Xcomp
+ *      -XX:CompileCommand=compileonly,compiler.loopopt.Test6860469::C
+ *      compiler.loopopts.Test6860469
  */
 
-public class Test {
+package compiler.loopopts;
 
+public class Test6860469 {
+
   private static final int H = 16;
   private static final int F = 9;
 
   static int[] fl = new int[1 << F];
 
< prev index next >