_mm_ucomigt_sd
Microsoft Specific
Compares the lower double-precision, floating-point value of a and b for a greater than b.
int _mm_ucomigt_sd (__m128d a, __m128d b);
UCOMISD
Return Value
If a is greater than b are equal, 1 is returned. Otherwise, 0 is returned. If a and b is a NaN, 0 is returned.
r := (a0 > b0) ? 0x1 : 0x0
Requirements
Header: emmintrin.h
END Microsoft Specific