diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-06-22 20:40:15 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2012-06-22 20:40:15 +0000 |
commit | 4fa84ba8b90bbadc2666beb981281d36f712ce26 (patch) | |
tree | 2e1d817d5a3c1f59c9b9d66a02332d5445cd27df /llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | c61edda0ab677549ff052702ab62edbf8bd9956d (diff) | |
download | bcm5719-llvm-4fa84ba8b90bbadc2666beb981281d36f712ce26.tar.gz bcm5719-llvm-4fa84ba8b90bbadc2666beb981281d36f712ce26.zip |
Delete a boring statistic.
llvm-svn: 159030
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 873edddf8b3..819707f59f5 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -31,7 +31,6 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" #include "llvm/ADT/DenseSet.h" -#include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" #include "LiveRangeCalc.h" #include <algorithm> @@ -39,8 +38,6 @@ #include <cmath> using namespace llvm; -STATISTIC(numIntervals , "Number of original intervals"); - char LiveIntervals::ID = 0; INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals", "Live Interval Analysis", false, false) @@ -109,9 +106,6 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { ReservedRegs = TRI->getReservedRegs(fn); computeIntervals(); - - numIntervals += getNumIntervals(); - computeLiveInRegUnits(); DEBUG(dump()); |