diff --git a/src/hotspot/test/hotspot/jtreg/compiler/predicates/TestTemplateAssertionPredicateWithTwoUCTs.java b/test/hotspot/jtreg/compiler/predicates/TestTemplateAssertionPredicateWithTwoUCTs.java similarity index 95% rename from src/hotspot/test/hotspot/jtreg/compiler/predicates/TestTemplateAssertionPredicateWithTwoUCTs.java rename to test/hotspot/jtreg/compiler/predicates/TestTemplateAssertionPredicateWithTwoUCTs.java index 3f7ef0931620d..aadaf75869f2e 100644 --- a/src/hotspot/test/hotspot/jtreg/compiler/predicates/TestTemplateAssertionPredicateWithTwoUCTs.java +++ b/test/hotspot/jtreg/compiler/predicates/TestTemplateAssertionPredicateWithTwoUCTs.java @@ -25,7 +25,7 @@ /* * @test * @bug 8342287 - * @summary Test that a fail path projection of a Template Assertion Predicate is not treated as success path projection + * @summary Test that a fail path projection of a Template Assertion Predicate is not treated as success path projection. * @run main/othervm -XX:-TieredCompilation -Xbatch * -XX:CompileCommand=compileonly,compiler.predicates.TestTemplateAssertionPredicateWithTwoUCTs::test * compiler.predicates.TestTemplateAssertionPredicateWithTwoUCTs @@ -43,7 +43,7 @@ public static void main(String[] strArr) { } static void test() { - int lArr[][] = new int[100][1]; + int[][] lArr = new int[100][1]; for (int i14 = 5; i14 < 273; ++i14) { int i16 = 1; while (++i16 < 94) { @@ -58,4 +58,3 @@ static void test() { } } } -