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