diff options
author | Lang Hames <lhames@gmail.com> | 2009-11-18 20:31:20 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2009-11-18 20:31:20 +0000 |
commit | 38283e23df5aa748ec3bb5f02f14f1741cf491ce (patch) | |
tree | b7603b442e207b42daef6a95c30083ab25a25b25 /lib/CodeGen/Spiller.h | |
parent | e823db8bae7fe42cd4f1fa861bec8c36a636702b (diff) | |
download | external_llvm-38283e23df5aa748ec3bb5f02f14f1741cf491ce.zip external_llvm-38283e23df5aa748ec3bb5f02f14f1741cf491ce.tar.gz external_llvm-38283e23df5aa748ec3bb5f02f14f1741cf491ce.tar.bz2 |
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.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h index 9c3900d..8abf9b5 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. |