enum APFloatBase::opStatus
Description
IEEE-754R 7: Default exception handling. opUnderflow or opOverflow are always returned or-ed with opInexact. APFloat models this behavior specified by IEEE-754: "For operations producing results in floating-point format, the default result of an operation that signals the invalid operation exception shall be a quiet NaN."
Declared at: llvm/include/llvm/ADT/APFloat.h:201
Enumerators
Name | Value | Comment |
---|---|---|
opOK | 0 | |
opInvalidOp | 1 | |
opDivByZero | 2 | |
opOverflow | 4 | |
opUnderflow | 8 | |
opInexact | 16 |