Searched refs:DeletePHIIfEmpty (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Instructions.h | 2072 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true); 2074 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { 2077 return removeIncomingValue(Idx, DeletePHIIfEmpty);
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 2640 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true); 2642 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { 2645 return removeIncomingValue(Idx, DeletePHIIfEmpty);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Instructions.h | 3079 Value *removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty = true); 3081 Value *removeIncomingValue(const BasicBlock *BB, bool DeletePHIIfEmpty=true) { 3084 return removeIncomingValue(Idx, DeletePHIIfEmpty);
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Instructions.cpp | 113 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { in removeIncomingValue() argument 129 if (getNumOperands() == 0 && DeletePHIIfEmpty) { in removeIncomingValue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Instructions.cpp | 158 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { in removeIncomingValue() argument 174 if (getNumOperands() == 0 && DeletePHIIfEmpty) { in removeIncomingValue()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 103 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) { in removeIncomingValue() argument 119 if (getNumOperands() == 0 && DeletePHIIfEmpty) { in removeIncomingValue()
|