< prev index next >

test/compiler/c2/Test6443505.java

Print this page

        

*** 25,37 **** /** * @test * @bug 6443505 * @summary Some cases for CmpLTMask missed; also wrong code. * ! * @run main/othervm -Xcomp -XX:CompileOnly="Test6443505.compiled" Test6443505 */ public class Test6443505 { public static void main(String[] args) throws InterruptedException { test(Integer.MIN_VALUE, 0); test(0, Integer.MIN_VALUE); --- 25,41 ---- /** * @test * @bug 6443505 * @summary Some cases for CmpLTMask missed; also wrong code. * ! * @run main/othervm -Xcomp ! * -XX:CompileCommand=compileonly,compiler.c2.Test6443505::compiled ! * compiler.c2.Test6443505 */ + package compiler.c2; + public class Test6443505 { public static void main(String[] args) throws InterruptedException { test(Integer.MIN_VALUE, 0); test(0, Integer.MIN_VALUE);
< prev index next >