< prev index next >

test/compiler/arraycopy/TestLoadBypassArrayCopy.java

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

*** 23,36 **** /* * @test * @bug 8086046 * @summary load bypasses arraycopy that sets the value after the ArrayCopyNode is expanded - * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:CompileCommand=dontinline,TestLoadBypassArrayCopy::test_helper -XX:-TieredCompilation TestLoadBypassArrayCopy * */ public class TestLoadBypassArrayCopy { static long i; static boolean test_helper() { i++; --- 23,41 ---- /* * @test * @bug 8086046 * @summary load bypasses arraycopy that sets the value after the ArrayCopyNode is expanded * + * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement + * -XX:CompileCommand=dontinline,compiler.arraycopy.TestLoadBypassArrayCopy::test_helper + * -XX:-TieredCompilation + * compiler.arraycopy.TestLoadBypassArrayCopy */ + package compiler.arraycopy; + public class TestLoadBypassArrayCopy { static long i; static boolean test_helper() { i++;
< prev index next >