_mm_movehdup_ps
Classification
SSE_ALL, Move, CPUID Test: SSE3
Header File
pmmintrin.h
Instruction
MOVSHDUP xmm, xmm
Synopsis
 _mm_movehdup_ps(__m128 a);
Description
Duplicate odd-indexed single-precision (32-bit) floating-point elements from "a", and store the results in "dst".
Operation
dst[31:0] := a[63:32] 
dst[63:32] := a[63:32]
dst[95:64] := a[127:96] 
dst[127:96] := a[127:96]