Home | History | Annotate | Download | only in IPO

Lines Matching refs:LI

350     if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
351 Value *V = LI->getPointerOperand();
384 if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
385 if (LI->isVolatile()) return false; // Don't hack volatile loads
386 Loads.push_back(LI);
412 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
413 if (LI->isVolatile()) return false; // Don't hack volatile loads
414 Loads.push_back(LI);
829 if (LoadInst *LI = dyn_cast<LoadInst>(I->use_back())) {
833 LI->replaceAllUsesWith(I2);
834 AA.replaceWithNewValue(LI, I2);
835 LI->eraseFromParent();