Searched refs:StrippedI (Results 1 – 1 of 1) sorted by relevance
1186 Instruction *StrippedI = dyn_cast<Instruction>(StrippedBaseI); in getNodeForInc() local1187 if (!StrippedI) in getNodeForInc()1192 if (StrippedI->getOpcode() == Instruction::Add || in getNodeForInc()1193 (StrippedI->getOpcode() == Instruction::GetElementPtr && in getNodeForInc()1194 StrippedI->getNumOperands() == 2)) { in getNodeForInc()1195 if (SE->getSCEVAtScope(StrippedI->getOperand(0), L) == BasePtrIncSCEV) in getNodeForInc()1196 return StrippedI->getOperand(0); in getNodeForInc()1197 if (SE->getSCEVAtScope(StrippedI->getOperand(1), L) == BasePtrIncSCEV) in getNodeForInc()1198 return StrippedI->getOperand(1); in getNodeForInc()