summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff options
context:
space:
mode:
authorMatthias Braun <matze@braunis.de>2015-01-21 18:45:57 +0000
committerMatthias Braun <matze@braunis.de>2015-01-21 18:45:57 +0000
commit1002baf7b908cd1f683fd714e24dc4a7448447e2 (patch)
treede0387cf4c51cf8272719296648bad08c4789fcf /llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
parent04b979dd812c86f78f58e4d155eebe050de08e4e (diff)
downloadbcm5719-llvm-1002baf7b908cd1f683fd714e24dc4a7448447e2.tar.gz
bcm5719-llvm-1002baf7b908cd1f683fd714e24dc4a7448447e2.zip
LiveIntervalAnalysis: Remove unused pruneValue() variant.
llvm-svn: 226686
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveIntervalAnalysis.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
index 56f38b6407d..36aeaa176a2 100644
--- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -609,15 +609,6 @@ void LiveIntervals::pruneValue(LiveRange &LR, SlotIndex Kill,
}
}
-void LiveIntervals::pruneValue(LiveInterval &LI, SlotIndex Kill,
- SmallVectorImpl<SlotIndex> *EndPoints) {
- pruneValue((LiveRange&)LI, Kill, EndPoints);
-
- for (LiveInterval::SubRange &SR : LI.subranges()) {
- pruneValue(SR, Kill, nullptr);
- }
-}
-
//===----------------------------------------------------------------------===//
// Register allocator hooks.
//
OpenPOWER on IntegriCloud