enum SelectionDAG::OverflowKind
Description
Used to represent the possible overflow behavior of an operation. Never: the operation cannot overflow. Always: the operation will always overflow. Sometime: the operation may or may not overflow.
Declared at: llvm/include/llvm/CodeGen/SelectionDAG.h:1547
Enumerators
Name | Value | Comment |
---|---|---|
OFK_Never | 0 | |
OFK_Sometime | 1 | |
OFK_Always | 2 |