From 1539cfa01419ee9d73077f84d21d65b52f3fd420 Mon Sep 17 00:00:00 2001 From: Yang Hau Date: Sun, 9 Jun 2024 15:19:16 +0800 Subject: [PATCH] wip --- tests/impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/impl.cpp b/tests/impl.cpp index 4e3141e7..0587ab0a 100644 --- a/tests/impl.cpp +++ b/tests/impl.cpp @@ -3093,7 +3093,7 @@ result_t test_mm_storeu_si16(const SSE2NEONTestImpl &impl, uint32_t iter) return TEST_UNIMPL; #else const int32_t *_a = (const int32_t *) impl.mTestIntPointer1; - __m128i b; + __m128i b = _mm_setzero_si128(); __m128i a = load_m128i(_a); _mm_storeu_si16(&b, a); int16_t *_b = (int16_t *) &b; @@ -6536,7 +6536,7 @@ result_t test_mm_storeu_si32(const SSE2NEONTestImpl &impl, uint32_t iter) return TEST_UNIMPL; #else const int32_t *_a = (const int32_t *) impl.mTestIntPointer1; - __m128i b; + __m128i b = _mm_setzero_si128(); __m128i a = load_m128i(_a); _mm_storeu_si32(&b, a); int32_t *_b = (int32_t *) &b;