Searched defs:removeIncomingValue (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/IR/
H A DInstructions.h2278 /// removeIncomingValue - Remove an incoming value. This is useful if a
2286 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
2288 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { function in class:llvm::PHINode
2291 return removeIncomingValue(Idx, DeletePHIIfEmpty);
/external/llvm/lib/IR/
H A DInstructions.cpp112 // removeIncomingValue - Remove an incoming value. This is useful if a
114 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { function in class:PHINode

Completed in 144 milliseconds