summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Spiller.h
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2009-11-18 20:31:20 +0000
committerLang Hames <lhames@gmail.com>2009-11-18 20:31:20 +0000
commit38283e23df5aa748ec3bb5f02f14f1741cf491ce (patch)
treeb7603b442e207b42daef6a95c30083ab25a25b25 /lib/CodeGen/Spiller.h
parente823db8bae7fe42cd4f1fa861bec8c36a636702b (diff)
downloadllvm-38283e23df5aa748ec3bb5f02f14f1741cf491ce.tar.gz
llvm-38283e23df5aa748ec3bb5f02f14f1741cf491ce.tar.bz2
llvm-38283e23df5aa748ec3bb5f02f14f1741cf491ce.tar.xz
Fixed the in-place spiller and trivial rewriter, which had been broken by the recent SlotIndexes work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89238 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Spiller.h')
-rw-r--r--lib/CodeGen/Spiller.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h
index 9c3900df0b..8abf9b517c 100644
--- a/lib/CodeGen/Spiller.h
+++ b/lib/CodeGen/Spiller.h
@@ -34,10 +34,6 @@ namespace llvm {
/// implementation selected.
virtual std::vector<LiveInterval*> spill(LiveInterval *li) = 0;
- /// Intra-block split.
- virtual std::vector<LiveInterval*> intraBlockSplit(LiveInterval *li,
- VNInfo *valno) = 0;
-
};
/// Create and return a spiller object, as specified on the command line.