< prev index next >

test/compiler/loopopts/TestMoveStoresOutOfLoopsStoreNoCtrl.java

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

*** 23,36 **** /* * @test * @bug 8134288 * @summary Store nodes may not have a control if used to update profiling - * @run main/othervm -XX:-ProfileInterpreter -XX:-TieredCompilation -XX:-BackgroundCompilation TestMoveStoresOutOfLoopsStoreNoCtrl * */ public class TestMoveStoresOutOfLoopsStoreNoCtrl { static void test(boolean flag) { for (int i = 0; i < 20000; i++) { if (flag) { --- 23,40 ---- /* * @test * @bug 8134288 * @summary Store nodes may not have a control if used to update profiling * + * @run main/othervm -XX:-ProfileInterpreter -XX:-TieredCompilation + * -XX:-BackgroundCompilation + * compiler.loopopts.TestMoveStoresOutOfLoopsStoreNoCtrl */ + package compiler.loopopts; + public class TestMoveStoresOutOfLoopsStoreNoCtrl { static void test(boolean flag) { for (int i = 0; i < 20000; i++) { if (flag) {
< prev index next >