enum class LoopBounds::Direction

Description

An enum for the direction of the loop - for (int i = 0; i < ub; ++i) --> Increasing - for (int i = ub; i > 0; --i) --> Descresing - for (int i = x; i != y; i+=z) --> Unknown

Declared at: llvm/include/llvm/Analysis/LoopInfo.h:677

Enumerators

NameValueComment
Increasing0
Decreasing1
Unknown2