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 | d0bb5e2ca05d9c942223bf05e5940bb0c6cc9d3f (patch) | |
tree | 377674502da26679b47c637b6b94b3248674354c /lib/CodeGen/LiveIntervalUnion.cpp | |
parent | ceadc01e9101329cd820ee687f85c012e9609ab1 (diff) |
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.cpp | 4 |
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, |