We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14591b2 commit 9f24c4fCopy full SHA for 9f24c4f
1 file changed
test/hotspot/jtreg/compiler/vectorapi/TestVectorReallocation.java
@@ -301,7 +301,7 @@ float value() {
301
}
302
303
@Test
304
- @IR(counts = {IRNode.ADD_VF, " >0 "})
+ @IR(counts = {IRNode.ADD_VF, IRNode.VECTOR_SIZE_ANY, " >0 "})
305
void floatIdentityWithReallocation() {
306
FloatVector v0 = FloatVector.fromArray(F_SPECIES, f_a, 0);
307
float zeroSum = 0;
@@ -339,7 +339,7 @@ void doubleIdentityWithReallocation_runner(RunInfo runInfo) {
339
340
341
342
- @IR(counts = {IRNode.ADD_VD, " >0 "})
+ @IR(counts = {IRNode.ADD_VD, IRNode.VECTOR_SIZE_ANY, " >0 "})
343
void doubleIdentityWithReallocation() {
344
DoubleVector v0 = DoubleVector.fromArray(D_SPECIES, d_a, 0);
345
double zeroSum = 0;
0 commit comments