< prev index next >

test/compiler/c2/Test6843752.java

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

@@ -23,15 +23,18 @@
 
 /*
  * @test
  * @bug 6843752
  * @summary missing code for an anti-dependent Phi in GCM
- * @run main/othervm -Xbatch Test
+ *
+ * @run main/othervm -Xbatch compiler.c2.Test6843752
  */
 
-public class Test {
+package compiler.c2;
 
+public class Test6843752 {
+
     Item list;
 
     static class Item {
         public Item    next;
         public Item    prev;

@@ -95,11 +98,11 @@
         list = null;
     }
 
     static public void main(String[] args) {
         int caseCnt = 0;
-        Test bj = new Test();
+        Test6843752 bj = new Test6843752();
         try {
             for (; caseCnt < 500000;) {
                 int numItems = (++caseCnt % 2);
                 if ((caseCnt % 64) == 0) {
                     numItems = 5;
< prev index next >