< prev index next >

test/compiler/c2/Test6866651.java

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

@@ -24,15 +24,17 @@
 /**
  * @test
  * @bug 6866651
  * @summary delay dead node elimination in set_req_X to prevent killing the current node when it is in use
  *
- * @run main Test
+ * @run main compiler.c2.Test6866651
  */
 
-public class Test {
+package compiler.c2;
 
+public class Test6866651 {
+
     static int sum() {
         int s = 0;
         for (int x = 1, y = 0; x != 0; x++, y--) {
             s ^= y;
         }
< prev index next >