mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2024-08-15 00:23:14 +00:00
Fixed possible memory alignment issue
This commit is contained in:
parent
954365634e
commit
a6c6026e2b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue