Searched defs:IncI (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp1184 Instruction *IncI = dyn_cast<Instruction>(IncV); local
1185 if (!IncI)
1188 switch (IncI->getOpcode()) {
1194 if (IncI->getNumOperands() == 2)
1200 PHINode *Phi = dyn_cast<PHINode>(IncI->getOperand(0));
1202 if (isLoopInvariant(IncI->getOperand(1), L, DT))
1206 if (IncI->getOpcode() == Instruction::GetElementPtr)
1210 Phi = dyn_cast<PHINode>(IncI->getOperand(1));
1212 if (isLoopInvariant(IncI->getOperand(0), L, DT))

Completed in 39 milliseconds