< prev index next >

test/compiler/codegen/Test6797305.java

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

*** 24,36 **** /** * @test * @bug 6797305 * @summary Add LoadUB and LoadUI opcode class * ! * @run main/othervm -Xcomp -XX:CompileOnly=Test6797305.loadB,Test6797305.loadB2L,Test6797305.loadUB,Test6797305.loadUBmask,Test6797305.loadUB2L,Test6797305.loadS,Test6797305.loadS2L,Test6797305.loadUS,Test6797305.loadUSmask,Test6797305.loadUS2L,Test6797305.loadI,Test6797305.loadI2L,Test6797305.loadUI2L,Test6797305.loadL Test6797305 */ public class Test6797305 { static final byte[] ba = new byte[] { -1 }; static final short[] sa = new short[] { -1 }; static final int[] ia = new int[] { -1 }; static final long[] la = new long[] { -1 }; --- 24,40 ---- /** * @test * @bug 6797305 * @summary Add LoadUB and LoadUI opcode class * ! * @run main/othervm -Xcomp ! * -XX:CompileCommand=compileonly,compiler.codegen.Test6797305::load* ! * compiler.codegen.Test6797305 */ + package compiler.codegen; + public class Test6797305 { static final byte[] ba = new byte[] { -1 }; static final short[] sa = new short[] { -1 }; static final int[] ia = new int[] { -1 }; static final long[] la = new long[] { -1 };
< prev index next >