_mm_load_ps

Microsoft Specific

Loads four single-precision, floating-point values.

__m128 _mm_load_ps(float * p );
MOVAPS 

Return Value

The address must be 16-byte aligned.

r0 := p[0] 
r1 := p[1] 
r2 := p[2] 
r3 := p[3] 

Requirements

Header: mmintrin.h

END Microsoft Specific

See Also

Reference

Load Operations (SSE)