< prev index next >

test/compiler/loopopts/TestSplitIfBlocksDisabled.java

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

@@ -24,12 +24,17 @@
 
 /**
  * @test TestSplitIfBlocksDisabled
  * @bug 8086057
  * @summary Verifies that loop optimizations work if SplitIfBlocks is disabled.
- * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:-SplitIfBlocks TestSplitIfBlocksDisabled
+ *
+ * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:-SplitIfBlocks
+ *                   compiler.loopopts.TestSplitIfBlocksDisabled
  */
+
+package compiler.loopopts;
+
 public class TestSplitIfBlocksDisabled {
 
     public static void main(String[] args) {
       System.out.println("Passed");
     }
< prev index next >