_m_pxor
Classification
MMX, Logical, CPUID Test: MMX
Header File
mmintrin.h
Instruction
PXOR mm, mm
Synopsis
 _m_pxor(__m64 a, __m64 b);
Description
Compute the bitwise XOR of 64 bits (representing integer data) in "a" and "b", and store the result in "dst".
Operation
dst[63:0] := (a[63:0] XOR b[63:0])