diff options
author | Vedant Kumar <vsk@apple.com> | 2016-10-06 22:53:43 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-10-06 22:53:43 +0000 |
commit | 7beb4237654dd8e048e127608ad77906dd12365d (patch) | |
tree | d286664c747ee524e4206f42f0250b4f198dd499 /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 1343fac3ca40813aa7cf23f3e37f44bff53f409e (diff) | |
download | bcm5719-llvm-7beb4237654dd8e048e127608ad77906dd12365d.tar.gz bcm5719-llvm-7beb4237654dd8e048e127608ad77906dd12365d.zip |
Delete some dead code in SelectionDAG (NFC)
Differential Revision: https://reviews.llvm.org/D24435
llvm-svn: 283505
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index d262c2d91ce..cbcd6ca9d74 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -541,10 +541,6 @@ void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) { ((DAGCombiner*)DC)->AddToWorklist(N); } -void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) { - ((DAGCombiner*)DC)->removeFromWorklist(N); -} - SDValue TargetLowering::DAGCombinerInfo:: CombineTo(SDNode *N, ArrayRef<SDValue> To, bool AddTo) { return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo); |