< prev index next >

test/compiler/c2/Test6753639.java

Print this page

        

@@ -25,13 +25,15 @@
 /**
  * @test
  * @bug 6753639
  * @summary Strange optimisation in for loop with cyclic integer condition
  *
- * @run main/othervm -Xbatch Test6753639
+ * @run main/othervm -Xbatch compiler.c2.Test6753639
  */
 
+package compiler.c2;
+
 public class Test6753639 {
     public static void main(String[] args) throws InterruptedException {
         int END = Integer.MAX_VALUE;
         int count = 0;
         for(int i = Integer.MAX_VALUE - 5; i <= END; i++) {
< prev index next >