< prev index next >

test/compiler/codegen/Test6378821.java

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

*** 24,36 **** /** * @test * @bug 6378821 * @summary where available, bitCount() should use POPC on SPARC processors and AMD+10h * ! * @run main/othervm -Xcomp -XX:CompileOnly=Test6378821.fcomp Test6378821 */ public class Test6378821 { static final int[] ia = new int[] { 0x12345678 }; static final long[] la = new long[] { 0x12345678abcdefL }; public static void main(String [] args) { --- 24,40 ---- /** * @test * @bug 6378821 * @summary where available, bitCount() should use POPC on SPARC processors and AMD+10h * ! * @run main/othervm -Xcomp ! * -XX:CompileCommand=compileonly,compiler.codegen.Test6378821::fcomp ! * compiler.codegen.Test6378821 */ + package compiler.codegen; + public class Test6378821 { static final int[] ia = new int[] { 0x12345678 }; static final long[] la = new long[] { 0x12345678abcdefL }; public static void main(String [] args) {
< prev index next >