enum class OverflowResult
Declared at: llvm/include/llvm/Analysis/ValueTracking.h:447
Enumerators
Name | Value | Comment |
---|---|---|
AlwaysOverflowsLow | 0 | Always overflows in the direction of signed/unsigned min value. |
AlwaysOverflowsHigh | 1 | Always overflows in the direction of signed/unsigned max value. |
MayOverflow | 2 | May or may not overflow. |
NeverOverflows | 3 | Never overflows. |