From 0f281b6cb647171f986ea9c84e78f61947045b2e Mon Sep 17 00:00:00 2001 From: Michael Oliver Date: Mon, 22 Jun 2026 08:13:13 +0100 Subject: [PATCH] [CPU] fix vector store tests --- src/xenia/cpu/testing/misc_opcode_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/cpu/testing/misc_opcode_test.cc b/src/xenia/cpu/testing/misc_opcode_test.cc index a68f1826b..3e3dfa67e 100644 --- a/src/xenia/cpu/testing/misc_opcode_test.cc +++ b/src/xenia/cpu/testing/misc_opcode_test.cc @@ -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(