enum RoundingMode
Description
Rounding mode used for floating point operations. Each of these values correspond to some metadata argument value of a constrained floating point intrinsic. See the LLVM Language Reference Manual for details.
Declared at: llvm/include/llvm/IR/FPEnv.h:31
Enumerators
Name | Value | Comment |
---|---|---|
rmDynamic | 0 | This corresponds to "fpround.dynamic". |
rmToNearest | 1 | This corresponds to "fpround.tonearest". |
rmDownward | 2 | This corresponds to "fpround.downward". |
rmUpward | 3 | This corresponds to "fpround.upward". |
rmTowardZero | 4 | This corresponds to "fpround.tozero". |