diff options
| author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-05-06 18:02:10 +0000 |
|---|---|---|
| committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2015-05-06 18:02:10 +0000 |
| commit | 6c0fe24bd16cb2fbf5b215c992759978c5649553 (patch) | |
| tree | 42f325db7dc3d755f2d6709a8870a42fa967ceb8 | |
| parent | 14f94de1ee6487f2f254709383258aaa095b4cfe (diff) | |
| download | bcm5719-llvm-6c0fe24bd16cb2fbf5b215c992759978c5649553.tar.gz bcm5719-llvm-6c0fe24bd16cb2fbf5b215c992759978c5649553.zip | |
[SelectionDAG] Delete SelectionDAGBuilder::removeValue. NFC.
SelectionDAGBuilder::removeValue is dead now, after rL236563.
llvm-svn: 236618
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index e3f3cd26d97..f0c03af3f64 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -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!"); |

