[SelectionDAG] Delete SelectionDAGBuilder::removeValue. NFC.

SelectionDAGBuilder::removeValue is dead now, after rL236563.

llvm-svn: 236618
This commit is contained in:
Sanjoy Das 2015-05-06 18:02:10 +00:00
parent 14f94de1ee
commit 6c0fe24bd1
1 changed files with 0 additions and 6 deletions

View File

@ -679,12 +679,6 @@ public:
N = NewN;
}
void removeValue(const Value *V) {
// This is to support hack in lowerCallFromStatepoint
// Should be removed when hack is resolved
NodeMap.erase(V);
}
void setUnusedArgValue(const Value *V, SDValue NewN) {
SDValue &N = UnusedArgNodeMap[V];
assert(!N.getNode() && "Already set a value for this node!");