< prev index next >

test/compiler/debug/TraceIterativeGVN.java

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

@@ -23,14 +23,18 @@
  * questions.
  */
 
 /*
  * @test
+ *
  * @run main/othervm -Xbatch -XX:-TieredCompilation
  *                   -XX:+IgnoreUnrecognizedVMOptions -XX:+TraceIterativeGVN
- *                   TraceIterativeGVN
+ *                   compiler.debug.TraceIterativeGVN
  */
+
+package compiler.debug;
+
 public class TraceIterativeGVN {
     public static void main(String[] args) {
         for (int i = 0; i < 100_000; i++) {
             Byte.valueOf((byte)0);
         }
< prev index next >