< prev index next >

test/compiler/codegen/LoadWithMask.java

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

*** 23,37 **** /* * @test * @bug 8032207 * @summary Invalid node sizing for loadUS2L_immI16 and loadI2L_immI - * @run main/othervm -Xbatch -XX:CompileCommand=compileonly,LoadWithMask.foo LoadWithMask * */ public class LoadWithMask { static int x[] = new int[1]; static long foo() { return x[0] & 0xfff0ffff; } public static void main(String[] args) { --- 23,43 ---- /* * @test * @bug 8032207 * @summary Invalid node sizing for loadUS2L_immI16 and loadI2L_immI * + * @run main/othervm -Xbatch + * -XX:CompileCommand=compileonly,compiler.codegen.LoadWithMask::foo + * compiler.codegen.LoadWithMask */ + + package compiler.codegen; + public class LoadWithMask { static int x[] = new int[1]; + static long foo() { return x[0] & 0xfff0ffff; } public static void main(String[] args) {
< prev index next >