We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 635a995 commit 3932d27Copy full SHA for 3932d27
coresimd/x86/sse2.rs
@@ -1145,7 +1145,7 @@ pub unsafe fn _mm_setzero_si128() -> __m128i {
1145
)]
1146
#[stable(feature = "simd_x86", since = "1.27.0")]
1147
pub unsafe fn _mm_loadl_epi64(mem_addr: *const __m128i) -> __m128i {
1148
- _mm_set_epi64x(0, simd_extract(ptr::read_unaligned(mem_addr).as_i64x2(), 0))
+ _mm_set_epi64x(0, ptr::read_unaligned(mem_addr as *const i64))
1149
}
1150
1151
/// Load 128-bits of integer data from memory into a new vector.
0 commit comments