_mm_loadr_ps

Microsoft Specific

Loads four single-precision, floating-point values in reverse order.

__m128 _mm_loadr_ps(float * p );
MOVAPS + shuffling

Return Value

The address must be 16-byte aligned.

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

Requirements

Header: mmintrin.h

END Microsoft Specific

See Also

Reference

Load Operations (SSE)