enum InductionDescriptor::InductionKind
Description
This enum represents the kinds of inductions that we support.
Declared at: llvm/include/llvm/Analysis/IVDescriptors.h:263
Enumerators
Name | Value | Comment |
---|---|---|
IK_NoInduction | 0 | Not an induction variable. |
IK_IntInduction | 1 | Integer induction variable. Step = C. |
IK_PtrInduction | 2 | Pointer induction var. Step = C / sizeof(elem). |
IK_FpInduction | 3 | Floating point induction variable. |