_mm_store_ss
Classification
Header File
Instruction
MOVSS m32, xmm
Synopsis
_mm_store_ss(float* mem_addr, __m128 a);
Description
Store the lower single-precision (32-bit) floating-point element from "a" into memory. "mem_addr" does not need to be aligned on any particular boundary.
Operation
MEM[mem_addr+31:mem_addr] := a[31:0]