summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-12 17:09:23 +0000
committerDan Gohman <gohman@apple.com>2008-11-12 17:09:23 +0000
commit5efcb61337a483970d2dd278b42e223500e088c1 (patch)
tree6c4142c098b6719872d3adc248de7c122f95c16e /llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
parentda82aa3e0d1192179a7b668384e403905a212303 (diff)
downloadbcm5719-llvm-5efcb61337a483970d2dd278b42e223500e088c1.tar.gz
bcm5719-llvm-5efcb61337a483970d2dd278b42e223500e088c1.zip
Remove some debugging code made redundant by the change to do
coalescing as a separate pass rather than inside of LiveIntervalAnalysis. llvm-svn: 59146
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveIntervalAnalysis.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
index b2576e4eae2..1709618037c 100644
--- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -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;
}
OpenPOWER on IntegriCloud