[CPU] fix vector store tests
This commit is contained in:
committed by
Radosław Gliński
parent
b268292046
commit
0f281b6cb6
@@ -659,7 +659,7 @@ TEST_CASE("STORE_VECTOR_LEFT", "[memory]") {
|
||||
}
|
||||
|
||||
for (uint32_t i = offset; i < 16; ++i) {
|
||||
expected[i] = kStoreVectorSource[(i - offset) ^ 3];
|
||||
expected[i] = kStoreVectorSource[(i - offset)];
|
||||
}
|
||||
|
||||
test.Run(
|
||||
@@ -696,7 +696,7 @@ TEST_CASE("STORE_VECTOR_RIGHT", "[memory]") {
|
||||
}
|
||||
|
||||
for (uint32_t i = 0; i < offset; ++i) {
|
||||
expected[i] = kStoreVectorSource[(16 - offset + i) ^ 3];
|
||||
expected[i] = kStoreVectorSource[(16 - offset + i)];
|
||||
}
|
||||
|
||||
test.Run(
|
||||
|
||||
Reference in New Issue
Block a user