< prev index next >

test/compiler/arraycopy/TestEliminatedArrayLoopPredicateCopyDeopt.java

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

*** 23,36 **** /* * @test * @bug 8134974 * @summary Cannot pin eliminated arraycopy loads for deopt state in uncommon trap path if it is a loop predicate unc - * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement TestEliminatedArrayLoopPredicateCopyDeopt * */ public class TestEliminatedArrayLoopPredicateCopyDeopt { static boolean test(int[] array_src) { int[] array_dst = new int[10]; System.arraycopy(array_src, 0, array_dst, 0, 10); --- 23,39 ---- /* * @test * @bug 8134974 * @summary Cannot pin eliminated arraycopy loads for deopt state in uncommon trap path if it is a loop predicate unc * + * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement + * compiler.arraycopy.TestEliminatedArrayLoopPredicateCopyDeopt */ + package compiler.arraycopy; + public class TestEliminatedArrayLoopPredicateCopyDeopt { static boolean test(int[] array_src) { int[] array_dst = new int[10]; System.arraycopy(array_src, 0, array_dst, 0, 10);
< prev index next >