< prev index next >

test/compiler/c1/Test8011771.java

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

*** 23,36 **** /* * @test * @bug 8011771 * @summary Array bound check elimination's in block motion doesn't always reset its data structures from one step to the other. - * @run main/othervm -XX:-BackgroundCompilation Test8011771 * */ public class Test8011771 { static void m(int[] a, int[] b, int j) { // Array bound check elimination inserts a predicate before // the loop. We'll have the predicate fail, so the method is --- 23,38 ---- /* * @test * @bug 8011771 * @summary Array bound check elimination's in block motion doesn't always reset its data structures from one step to the other. * + * @run main/othervm -XX:-BackgroundCompilation compiler.c1.Test8011771 */ + package compiler.c1; + public class Test8011771 { static void m(int[] a, int[] b, int j) { // Array bound check elimination inserts a predicate before // the loop. We'll have the predicate fail, so the method is
< prev index next >