From: Chris Lattner Date: Thu, 22 Jul 2004 21:54:22 +0000 (+0000) Subject: Fix broken -debug printing X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e8850f476eba1b839b24bd926bab2dfd8b452307;p=oota-llvm.git Fix broken -debug printing git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15115 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 35bbf081cb0..95b9ff46bf9 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; } }