Skip to content

Commit fafe8b3

Browse files
author
Xiaohong Gong
committedJul 6, 2022
8289604: compiler/vectorapi/VectorLogicalOpIdentityTest.java failed on x86 AVX1 system
Reviewed-by: jiefu, kvn
1 parent 3515604 commit fafe8b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎test/hotspot/jtreg/compiler/vectorapi/VectorLogicalOpIdentityTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -429,12 +429,12 @@ public static void testMaskAndMinusOne() {
429429
@Warmup(10000)
430430
@IR(failOn = {IRNode.AND_V, IRNode.AND_V_MASK}, counts = {IRNode.STORE_VECTOR, ">=1"})
431431
public static void testMaskAndZero() {
432-
VectorMask<Long> ma = VectorMask.fromArray(L_SPECIES, m, 0);
433-
VectorMask<Long> mb = L_SPECIES.maskAll(false);
432+
VectorMask<Short> ma = VectorMask.fromArray(S_SPECIES, m, 0);
433+
VectorMask<Short> mb = S_SPECIES.maskAll(false);
434434
ma.and(mb).intoArray(mr, 0);
435435

436436
// Verify results
437-
for (int i = 0; i < L_SPECIES.length(); i++) {
437+
for (int i = 0; i < S_SPECIES.length(); i++) {
438438
Asserts.assertEquals(false, mr[i]);
439439
}
440440
}

0 commit comments

Comments
 (0)
Please sign in to comment.