Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Jun 9, 2024
1 parent 309c683 commit 1539cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 1539cfa

Please sign in to comment.