Skip to content

Commit 4c66068

Browse files
committed
Fix _mm_stream_si64
1 parent 7c6e063 commit 4c66068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core_arch/src/x86_64/sse2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ pub unsafe fn _mm_cvttsd_si64x(a: __m128d) -> i64 {
7979
#[stable(feature = "simd_x86", since = "1.27.0")]
8080
pub unsafe fn _mm_stream_si64(mem_addr: *mut i64, a: i64) {
8181
crate::arch::asm!(
82-
"movnti [{p}], {a}",
82+
vps!("movnti", ",{a}"),
8383
p = in(reg) mem_addr,
8484
a = in(reg) a,
8585
options(nostack, preserves_flags),

0 commit comments

Comments
 (0)