From 4cbb3ca67d8b1ca5fee7793633de052a3b8f87b2 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 12 Nov 2008 17:09:23 +0000 Subject: [PATCH] Remove some debugging code made redundant by the change to do coalescing as a separate pass rather than inside of LiveIntervalAnalysis. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59146 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/LiveIntervalAnalysis.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index b2576e4eae2..1709618037c 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -54,7 +54,6 @@ static cl::opt EnableFastSpilling("fast-spill", cl::init(false), cl::Hidden); STATISTIC(numIntervals, "Number of original intervals"); -STATISTIC(numIntervalsAfter, "Number of intervals after coalescing"); STATISTIC(numFolds , "Number of loads/stores folded into instructions"); STATISTIC(numSplits , "Number of intervals split"); @@ -260,13 +259,6 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { numIntervals += getNumIntervals(); - DOUT << "********** INTERVALS **********\n"; - for (iterator I = begin(), E = end(); I != E; ++I) { - I->second->print(DOUT, tri_); - DOUT << "\n"; - } - - numIntervalsAfter += getNumIntervals(); DEBUG(dump()); return true; }