_mm_cmpunord_pd
Microsoft Specific
Compares the two double-precision, floating-point values of a and b for unordered.
__m128d _mm_cmpunord_pd (__m128d a, __m128d b);
CMPUNORDPD
Return Value
r0 := (a0 unord b0) ? 0xffffffffffffffff : 0x0
r1 := (a1 unord b1) ? 0xffffffffffffffff : 0x0
Requirements
Header: emmintrin.h
END Microsoft Specific