HomeSort by relevance Sort by last modified time
    Searched refs:PNV (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/VMCore/
BasicBlock.cpp 276 Value* PNV = 0;
277 if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue()))
278 if (PNV != PN) {
279 PN->replaceAllUsesWith(PNV);
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 206 if (Value *PNV = SimplifyInstruction(PN)) {
207 PN->replaceAllUsesWith(PNV);
  /external/llvm/lib/Transforms/Utils/
Local.cpp 403 Value *PNV = SimplifyInstruction(PN, TD);
404 if (PNV == 0) continue;
408 assert(PNV != PN && "SimplifyInstruction broken!");
411 ReplaceAndSimplifyAllUses(PN, PNV, TD);
    [all...]

Completed in 436 milliseconds