_mm_or_si128
Classification
SSE_ALL, Logical, CPUID Test: SSE2
Header File
emmintrin.h
Instruction
POR xmm, xmm
Synopsis
 _mm_or_si128(__m128i a, __m128i b);
Description
Compute the bitwise OR of 128 bits (representing integer data) in "a" and "b", and store the result in "dst".
Operation
dst[127:0] := (a[127:0] OR b[127:0])