mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2025-01-03 05:38:54 +00:00
Fixed possible memory alignment issue
This commit is contained in:
parent
954365634e
commit
a6c6026e2b
@ -174,7 +174,7 @@ constexpr uint64_t signExtend2sCompl(uint32_t x) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline __m128d load_cvt_i32x2(const void* addr) {
|
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);
|
return _mm_cvtepi32_pd(ix);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user