Function core::arch::x86::_mm_store_ps [] [src]

pub unsafe fn _mm_store_ps(p: *mut f32, a: __m128)
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on x86 and target feature sse only.

Store four 32-bit floats into aligned memory.

If the pointer is not aligned to a 128-bit boundary (16 bytes) a general protection fault will be triggered (fatal program crash).

Use _mm_storeu_ps for potentially unaligned memory.

This corresponds to instructions VMOVAPS / MOVAPS.