enum class ObjectSizeOpts::Mode

Description

Controls how we handle conditional statements with unknown conditions.

Declared at: llvm/include/llvm/Analysis/MemoryBuiltins.h:184

Enumerators

NameValueComment
Exact0Fail to evaluate an unknown condition.
Min1Evaluate all branches of an unknown condition. If all evaluations succeed, pick the minimum size.
Max2Same as Min, except we pick the maximum size of all of the branches.