From e8850f476eba1b839b24bd926bab2dfd8b452307 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 22 Jul 2004 21:54:22 +0000 Subject: [PATCH] Fix broken -debug printing git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15115 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/LiveIntervalAnalysis.cpp | 1 + 1 file changed, 1 insertion(+) 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; } } -- 2.34.1