< prev index next >

test/compiler/c2/Test6910484.java

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

@@ -24,15 +24,17 @@
 /**
  * @test
  * @bug 6910484
  * @summary incorrect integer optimization (loosing and op-r in a given example)
  *
- * @run main/othervm -Xbatch Test
+ * @run main/othervm -Xbatch compiler.c2.Test6910484
  */
 
-public class Test {
+package compiler.c2;
 
+public class Test6910484 {
+
     public static void main(String[] args) {
         long iteration = 0;
         for(int i = 0; i <11000; i++) {
             iteration++;
             int result = test(255);
< prev index next >