summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveIntervalUnion.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-12-15 23:46:13 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-12-15 23:46:13 +0000
commitd0bb5e2ca05d9c942223bf05e5940bb0c6cc9d3f (patch)
tree377674502da26679b47c637b6b94b3248674354c /lib/CodeGen/LiveIntervalUnion.cpp
parentceadc01e9101329cd820ee687f85c012e9609ab1 (diff)
downloadllvm-d0bb5e2ca05d9c942223bf05e5940bb0c6cc9d3f.tar.gz
llvm-d0bb5e2ca05d9c942223bf05e5940bb0c6cc9d3f.tar.bz2
llvm-d0bb5e2ca05d9c942223bf05e5940bb0c6cc9d3f.tar.xz
Start using SplitKit and MachineLoopRanges in RegAllocGreedy in preparation of
live range splitting around loops guided by register pressure. So far, trySplit() simply prints a lot of debug output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121918 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalUnion.cpp')
-rw-r--r--lib/CodeGen/LiveIntervalUnion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/LiveIntervalUnion.cpp b/lib/CodeGen/LiveIntervalUnion.cpp
index d18044a099..079468a4f0 100644
--- a/lib/CodeGen/LiveIntervalUnion.cpp
+++ b/lib/CodeGen/LiveIntervalUnion.cpp
@@ -83,8 +83,8 @@ LiveIntervalUnion::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const {
void LiveIntervalUnion::InterferenceResult::print(raw_ostream &OS,
const TargetRegisterInfo *TRI) const {
- OS << '[' << start() << ';' << stop() << ")\t";
- interference()->print(OS, TRI);
+ OS << '[' << start() << ';' << stop() << "):";
+ TRI->printReg(interference()->reg, OS);
}
void LiveIntervalUnion::Query::print(raw_ostream &OS,