Skip to content

Commit

Permalink
Fix _mm_stream_si64
Browse files Browse the repository at this point in the history
  • Loading branch information
sayantn committed Aug 3, 2024
1 parent 7c6e063 commit 4c66068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_arch/src/x86_64/sse2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pub unsafe fn _mm_cvttsd_si64x(a: __m128d) -> i64 {
#[stable(feature = "simd_x86", since = "1.27.0")]
pub unsafe fn _mm_stream_si64(mem_addr: *mut i64, a: i64) {
crate::arch::asm!(
"movnti [{p}], {a}",
vps!("movnti", ",{a}"),
p = in(reg) mem_addr,
a = in(reg) a,
options(nostack, preserves_flags),
Expand Down

0 comments on commit 4c66068

Please sign in to comment.