< prev index next >

test/compiler/c2/Test6866651.java

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

*** 24,38 **** /** * @test * @bug 6866651 * @summary delay dead node elimination in set_req_X to prevent killing the current node when it is in use * ! * @run main Test */ ! public class Test { static int sum() { int s = 0; for (int x = 1, y = 0; x != 0; x++, y--) { s ^= y; } --- 24,40 ---- /** * @test * @bug 6866651 * @summary delay dead node elimination in set_req_X to prevent killing the current node when it is in use * ! * @run main compiler.c2.Test6866651 */ ! package compiler.c2; + public class Test6866651 { + static int sum() { int s = 0; for (int x = 1, y = 0; x != 0; x++, y--) { s ^= y; }
< prev index next >