Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:EV

325     ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User);
326 if (!EV)
329 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 &&
332 if (EV->getIndices()[0] == 0)
333 EV->replaceAllUsesWith(Loaded);
335 EV->replaceAllUsesWith(Success);
337 PrunedInsts.push_back(EV);
341 for (auto EV : PrunedInsts)
342 EV->eraseFromParent();