Remove some debugging code made redundant by the change to do

coalescing as a separate pass rather than inside of
LiveIntervalAnalysis.

llvm-svn: 59146
This commit is contained in:
Dan Gohman 2008-11-12 17:09:23 +00:00
parent da82aa3e0d
commit 5efcb61337
1 changed files with 0 additions and 8 deletions

View File

@ -54,7 +54,6 @@ static cl::opt<bool> 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;
}