< prev index next >

test/compiler/loopopts/TestOverunrolling.java

Print this page

        

@@ -22,15 +22,20 @@
  */
 
 /*
  * @test
  * @bug 8159016
- * @requires vm.gc == "Parallel" | vm.gc == "null"
  * @summary Tests correct dominator information after over-unrolling a loop.
+ * @requires vm.gc == "Parallel" | vm.gc == "null"
+ *
  * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:-TieredCompilation
- *                   -XX:-UseG1GC -XX:+UseParallelGC TestOverunrolling
+ *                   -XX:-UseG1GC -XX:+UseParallelGC
+ *                   compiler.loopopts.TestOverunrolling
  */
+
+package compiler.loopopts;
+
 public class TestOverunrolling {
 
     public static Object test(int arg) {
         Object arr[] = new Object[3];
         int lim = (arg & 3);
< prev index next >