_mm_move_ss
Microsoft Specific
Sets the low word to the single-precision, floating-point value of b.
__m128 _mm_move_ss( __m128 a , __m128 b );
MOVSS
Return Value
The upper 3 single-precision, floating-point values are passed through from a.
r0 := b0
r1 := a1
r2 := a2
r3 := a3
Requirements
Header: mmintrin.h
END Microsoft Specific