_mm_storeu_si32
Classification
Header File
Instruction
MOVD m32, xmm
Synopsis
_mm_storeu_si32(void* mem_addr, __m128i a);
Description
Store 32-bit integer from the first element of "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]