diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-12-15 23:46:13 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-12-15 23:46:13 +0000 |
commit | e7601e97e1fe199680ff55c6b5971867c0245127 (patch) | |
tree | 4ac5e720d9e2ace6876161628ff37fdca1ca04ef /llvm/lib/CodeGen/LiveIntervalUnion.cpp | |
parent | 5e9778138670b93724b59361ce9d8637a299ea09 (diff) | |
download | bcm5719-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.cpp | 4 |
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, |