Searched refs:StrippedI (Results 1 – 1 of 1) sorted by relevance
1195 Instruction *StrippedI = dyn_cast<Instruction>(StrippedBaseI); in getNodeForInc() local1196 if (!StrippedI) in getNodeForInc()1201 if (StrippedI->getOpcode() == Instruction::Add || in getNodeForInc()1202 (StrippedI->getOpcode() == Instruction::GetElementPtr && in getNodeForInc()1203 StrippedI->getNumOperands() == 2)) { in getNodeForInc()1204 if (SE->getSCEVAtScope(StrippedI->getOperand(0), L) == BasePtrIncSCEV) in getNodeForInc()1205 return StrippedI->getOperand(0); in getNodeForInc()1206 if (SE->getSCEVAtScope(StrippedI->getOperand(1), L) == BasePtrIncSCEV) in getNodeForInc()1207 return StrippedI->getOperand(1); in getNodeForInc()