< prev index next >

test/compiler/loopopts/TestOverunrolling.java

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

*** 22,36 **** */ /* * @test * @bug 8159016 - * @requires vm.gc == "Parallel" | vm.gc == "null" * @summary Tests correct dominator information after over-unrolling a loop. * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -Xcomp -XX:-TieredCompilation ! * -XX:-UseG1GC -XX:+UseParallelGC TestOverunrolling */ public class TestOverunrolling { public static Object test(int arg) { Object arr[] = new Object[3]; int lim = (arg & 3); --- 22,41 ---- */ /* * @test * @bug 8159016 * @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 ! * 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 >