Fixed possible memory alignment issue

This commit is contained in:
tevador 2019-02-18 08:59:51 +01:00
parent 954365634e
commit a6c6026e2b
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ constexpr uint64_t signExtend2sCompl(uint32_t x) {
}
inline __m128d load_cvt_i32x2(const void* addr) {
__m128i ix = _mm_load_si128((const __m128i*)addr);
__m128i ix = _mm_loadl_epi64((const __m128i*)addr);
return _mm_cvtepi32_pd(ix);
}