< prev index next >

test/compiler/debug/TraceIterativeGVN.java

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

*** 23,36 **** * questions. */ /* * @test * @run main/othervm -Xbatch -XX:-TieredCompilation * -XX:+IgnoreUnrecognizedVMOptions -XX:+TraceIterativeGVN ! * TraceIterativeGVN */ public class TraceIterativeGVN { public static void main(String[] args) { for (int i = 0; i < 100_000; i++) { Byte.valueOf((byte)0); } --- 23,40 ---- * questions. */ /* * @test + * * @run main/othervm -Xbatch -XX:-TieredCompilation * -XX:+IgnoreUnrecognizedVMOptions -XX:+TraceIterativeGVN ! * compiler.debug.TraceIterativeGVN */ + + package compiler.debug; + public class TraceIterativeGVN { public static void main(String[] args) { for (int i = 0; i < 100_000; i++) { Byte.valueOf((byte)0); }
< prev index next >