diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-24 04:32:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-24 04:32:22 +0000 |
commit | 8c595eb4bd8bfc60b76a2b9b49b759632434b4ce (patch) | |
tree | 38aa28b8a38c33dcef32c04dfa5ebc6ac45666e0 /llvm/lib | |
parent | d9bbbb8484c19a33effc16342b484c614e923a7d (diff) | |
download | bcm5719-llvm-8c595eb4bd8bfc60b76a2b9b49b759632434b4ce.tar.gz bcm5719-llvm-8c595eb4bd8bfc60b76a2b9b49b759632434b4ce.zip |
whoops, didn't mean to remove this
llvm-svn: 15157
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 2b1184cf1c1..6021e9e56ff 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -549,7 +549,9 @@ void LiveIntervals::joinIntervalsInMachineBB(MachineBasicBlock *MBB) { LiveInterval &IntB = getInterval(regB); assert(IntA.reg == regA && IntB.reg == regB && "Register mapping is horribly broken!"); - + + DEBUG(std::cerr << "\t\tInspecting " << IntA << " and " << IntB << ": "); + // If two intervals contain a single value and are joined by a copy, it // does not matter if the intervals overlap, they can always be joined. bool TriviallyJoinable = |