Skip to content

Commit e5134c1

Browse files
gnzlbgBurntSushi
authored andcommitted
fix clippy warnings
1 parent bd58da7 commit e5134c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coresimd/src/x86/i586/sse2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ pub unsafe fn _mm_storel_epi64(mem_addr: *mut __m128i, a: __m128i) {
917917
#[target_feature = "+sse2"]
918918
#[cfg_attr(test, assert_instr(movntps))] // FIXME movntdq
919919
pub unsafe fn _mm_stream_si128(mem_addr: *mut __m128i, a: __m128i) {
920-
::core::intrinsics::nontemporal_store(mem::transmute(mem_addr), a);
920+
::core::intrinsics::nontemporal_store(mem_addr, a);
921921
}
922922

923923
/// Stores a 32-bit integer value in the specified memory location.

0 commit comments

Comments
 (0)