We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
_mm_stream_si64
1 parent 7c6e063 commit 4c66068Copy full SHA for 4c66068
crates/core_arch/src/x86_64/sse2.rs
@@ -79,7 +79,7 @@ pub unsafe fn _mm_cvttsd_si64x(a: __m128d) -> i64 {
79
#[stable(feature = "simd_x86", since = "1.27.0")]
80
pub unsafe fn _mm_stream_si64(mem_addr: *mut i64, a: i64) {
81
crate::arch::asm!(
82
- "movnti [{p}], {a}",
+ vps!("movnti", ",{a}"),
83
p = in(reg) mem_addr,
84
a = in(reg) a,
85
options(nostack, preserves_flags),
0 commit comments