_mm_cmpnge_sd

Microsoft Specific

Compares the lower double-precision, floating-point value of a and b for a not greater than or equal to b.

__m128d _mm_cmpnge_sd (__m128d a, __m128d b);
CMPNLESDr

Return Value

The upper double-precision, floating-point value is passed through from a.

r0 := !(a0 >= b0) ? 0xffffffffffffffff : 0x0
r1 := a1

Requirements

Header: emmintrin.h

END Microsoft Specific

See Also

Reference

Comparisons