aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LiveIntervalAnalysis.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-22 21:54:22 +0000
committerChris Lattner <sabre@nondot.org>2004-07-22 21:54:22 +0000
commite8850f476eba1b839b24bd926bab2dfd8b452307 (patch)
tree3c1d0af521ea2113b9921dcacb99ceda62123073 /lib/CodeGen/LiveIntervalAnalysis.cpp
parent4951d48a16d46880e7dd57580d8dda7a27820778 (diff)
Fix broken -debug printing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r--lib/CodeGen/LiveIntervalAnalysis.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index 35bbf081cb..95b9ff46bf 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -306,6 +306,7 @@ void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock* mbb,
assert(vi.AliveBlocks.empty() &&
"Shouldn't be alive across any blocks!");
interval.addRange(defIndex, killIdx);
+ DEBUG(std::cerr << "\n");
return;
}
}