Skip to content

Commit 9f24c4f

Browse files
committed
8381315: compiler/vectorapi/TestVectorReallocation.java fails with -XX:UseAVX=1 after JDK-8380565
1 parent 14591b2 commit 9f24c4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/hotspot/jtreg/compiler/vectorapi/TestVectorReallocation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ float value() {
301301
}
302302

303303
@Test
304-
@IR(counts = {IRNode.ADD_VF, " >0 "})
304+
@IR(counts = {IRNode.ADD_VF, IRNode.VECTOR_SIZE_ANY, " >0 "})
305305
void floatIdentityWithReallocation() {
306306
FloatVector v0 = FloatVector.fromArray(F_SPECIES, f_a, 0);
307307
float zeroSum = 0;
@@ -339,7 +339,7 @@ void doubleIdentityWithReallocation_runner(RunInfo runInfo) {
339339
}
340340

341341
@Test
342-
@IR(counts = {IRNode.ADD_VD, " >0 "})
342+
@IR(counts = {IRNode.ADD_VD, IRNode.VECTOR_SIZE_ANY, " >0 "})
343343
void doubleIdentityWithReallocation() {
344344
DoubleVector v0 = DoubleVector.fromArray(D_SPECIES, d_a, 0);
345345
double zeroSum = 0;

0 commit comments

Comments
 (0)