summaryrefslogtreecommitdiffstats
path: root/llvm/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
commite7601e97e1fe199680ff55c6b5971867c0245127 (patch)
tree4ac5e720d9e2ace6876161628ff37fdca1ca04ef /llvm/lib/CodeGen/LiveIntervalUnion.cpp
parent5e9778138670b93724b59361ce9d8637a299ea09 (diff)
downloadbcm5719-llvm-e7601e97e1fe199680ff55c6b5971867c0245127.tar.gz
bcm5719-llvm-e7601e97e1fe199680ff55c6b5971867c0245127.zip
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. llvm-svn: 121918
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalUnion.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveIntervalUnion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalUnion.cpp b/llvm/lib/CodeGen/LiveIntervalUnion.cpp
index d18044a099d..079468a4f03 100644
--- a/llvm/lib/CodeGen/LiveIntervalUnion.cpp
+++ b/llvm/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,
OpenPOWER on IntegriCloud