_mm_movehl_ps
Microsoft Specific
Moves the upper two single-precision, floating-point values of b
to the lower two single-precision, floating-point values of the result.
__m128 _mm_movehl_ps( __m128 a, __m128 b );
MOVHLPS
The upper two single-precision, floating-point values of a
are passed through to the result.
r3 := a3
r2 := a2
r1 := b3
r0 := b2
Header: mmintrin.h
END Microsoft Specific