[CPU] fix vector store tests

This commit is contained in:
Michael Oliver
2026-06-22 08:13:13 +01:00
committed by Radosław Gliński
parent b268292046
commit 0f281b6cb6

View File

@@ -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(