enum class ConstantRange::OverflowResult

Description

Represents whether an operation on the given constant range is known to always or never overflow.

Declared at: llvm/include/llvm/IR/ConstantRange.h:460

Enumerators

NameValueComment
AlwaysOverflowsLow0Always overflows in the direction of signed/unsigned min value.
AlwaysOverflowsHigh1Always overflows in the direction of signed/unsigned max value.
MayOverflow2May or may not overflow.
NeverOverflows3Never overflows.