@@ -2401,7 +2401,7 @@ public void test96_verifier() {
2401
2401
2402
2402
// Same as test95 but with instanceof instead of cast
2403
2403
@ Test
2404
- @ IR (failOn = CHECKCAST_ARRAY )
2404
+ //FIX:8343423 @IR(failOn = CHECKCAST_ARRAY)
2405
2405
public boolean test97 (Object [] array ) {
2406
2406
array [0 ] = new NonValueClass (42 );
2407
2407
// Always throws a ClassCastException because we just successfully stored
@@ -2425,8 +2425,8 @@ public void test97_verifier() {
2425
2425
2426
2426
// Same as test95 but with non-flattenable store
2427
2427
@ Test
2428
- @ IR (applyIf = {"FlatArrayElementMaxSize" , "= -1" },
2429
- failOn = CHECKCAST_ARRAY )
2428
+ //FIX:8343423 @IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2429
+ // failOn = CHECKCAST_ARRAY)
2430
2430
public MyValue1 [] test98 (Object [] array ) {
2431
2431
array [0 ] = new NotFlattenable ();
2432
2432
// Always throws a ClassCastException because we just successfully stored a
@@ -2454,8 +2454,8 @@ public void test98_verifier() {
2454
2454
2455
2455
// Same as test98 but with cmp user of cast result
2456
2456
@ Test
2457
- @ IR (applyIf = {"FlatArrayElementMaxSize" , "= -1" },
2458
- failOn = CHECKCAST_ARRAY )
2457
+ //FIX:8343423 @IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2458
+ // failOn = CHECKCAST_ARRAY)
2459
2459
public boolean test99 (Object [] array ) {
2460
2460
array [0 ] = new NotFlattenable ();
2461
2461
// Always throws a ClassCastException because we just successfully stored a
@@ -2484,8 +2484,8 @@ public void test99_verifier() {
2484
2484
2485
2485
// Same as test98 but with instanceof instead of cast
2486
2486
@ Test
2487
- @ IR (applyIf = {"FlatArrayElementMaxSize" , "= -1" },
2488
- failOn = CHECKCAST_ARRAY )
2487
+ //FIX:8343423 @IR(applyIf = {"FlatArrayElementMaxSize", "= -1"},
2488
+ // failOn = CHECKCAST_ARRAY)
2489
2489
public boolean test100 (Object [] array ) {
2490
2490
array [0 ] = new NotFlattenable ();
2491
2491
// Always throws a ClassCastException because we just successfully stored a
0 commit comments