Commit 1a09d3bc authored by Gabriel Hege's avatar Gabriel Hege Committed by Michael R. Crusoe

x86: move definition of 'value' to correct branch in _mm_loadl_epi64

parent aac58332
......@@ -3548,12 +3548,11 @@ simde_mm_loadl_epi64 (simde__m128i const* mem_addr) {
#else
simde__m128i_private r_;
int64_t value;
simde_memcpy(&value, mem_addr, sizeof(value));
#if defined(SIMDE_ARM_NEON_A32V7_NATIVE)
r_.neon_i64 = vcombine_s64(vld1_s64(HEDLEY_REINTERPRET_CAST(int64_t const *, mem_addr)), vdup_n_s64(0));
#else
int64_t value;
simde_memcpy(&value, mem_addr, sizeof(value));
r_.i64[0] = value;
r_.i64[1] = 0;
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment