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

/external/llvm/include/llvm/IR/
H A DInstructions.h2121 /// removeIncomingValue - Remove an incoming value. This is useful if a
2129 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true);
2131 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { function in class:llvm::PHINode
2134 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 87 milliseconds