We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd58da7 commit e5134c1Copy full SHA for e5134c1
coresimd/src/x86/i586/sse2.rs
@@ -917,7 +917,7 @@ pub unsafe fn _mm_storel_epi64(mem_addr: *mut __m128i, a: __m128i) {
917
#[target_feature = "+sse2"]
918
#[cfg_attr(test, assert_instr(movntps))] // FIXME movntdq
919
pub unsafe fn _mm_stream_si128(mem_addr: *mut __m128i, a: __m128i) {
920
- ::core::intrinsics::nontemporal_store(mem::transmute(mem_addr), a);
+ ::core::intrinsics::nontemporal_store(mem_addr, a);
921
}
922
923
/// Stores a 32-bit integer value in the specified memory location.
0 commit comments