forked from OSchip/llvm-project
[SelectionDAG] Delete SelectionDAGBuilder::removeValue. NFC.
SelectionDAGBuilder::removeValue is dead now, after rL236563. llvm-svn: 236618
This commit is contained in:
parent
14f94de1ee
commit
6c0fe24bd1
|
@ -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!");
|
||||
|
|
Loading…
Reference in New Issue