enum SelectPatternNaNBehavior
Description
Behavior when a floating point min/max is given one NaN and one non-NaN as input.
Declared at: llvm/include/llvm/Analysis/ValueTracking.h:589
Enumerators
Name | Value | Comment |
---|---|---|
SPNB_NA | 0 | |
SPNB_RETURNS_NAN | 1 | NaN behavior not applicable. |
SPNB_RETURNS_OTHER | 2 | Given one NaN input, returns the NaN. |
SPNB_RETURNS_ANY | 3 | Given one NaN input, returns the non-NaN. |