aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-24 04:32:22 +0000
committerChris Lattner <sabre@nondot.org>2004-07-24 04:32:22 +0000
commit060913cce42d8b746194c7ebd8b19c9789a03909 (patch)
tree884af70532eaeef0d45d8b75fdce7517b09c9473
parentdeb9971061cfb9c57930724fcf8d62fb26dc2213 (diff)
downloadexternal_llvm-060913cce42d8b746194c7ebd8b19c9789a03909.zip
external_llvm-060913cce42d8b746194c7ebd8b19c9789a03909.tar.gz
external_llvm-060913cce42d8b746194c7ebd8b19c9789a03909.tar.bz2
whoops, didn't mean to remove this
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15157 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/LiveIntervalAnalysis.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index 2b1184c..6021e9e 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/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 =