_mm_movelh_ps
Classification
SSE_ALL, Move, CPUID Test: SSE
Header File
xmmintrin.h
Instruction
MOVLHPS xmm, xmm
Synopsis
 _mm_movelh_ps(__m128 a, __m128 b);
Description
Move the lower 2 single-precision (32-bit) floating-point elements from "b" to the upper 2 elements of "dst", and copy the lower 2 elements from "a" to the lower 2 elements of "dst".
Operation
dst[31:0] := a[31:0]
dst[63:32] := a[63:32]
dst[95:64] := b[31:0]
dst[127:96] := b[63:32]