Changes to support PHINode::removeIncoming changes
[oota-llvm.git] / lib / Transforms / Utils / LowerAllocations.cpp
index 99eb2d044e4feeab8c189108cfd824686c340330..8c6550003dd72b0dbe78a4c0ca89148bc83349a2 100644 (file)
 #include "llvm/Constants.h"
 #include "llvm/Pass.h"
 #include "llvm/Target/TargetData.h"
-#include "Support/StatisticReporter.h"
+#include "Support/Statistic.h"
 
-static Statistic<> NumLowered("lowerallocs\t- Number of allocations lowered");
 using std::vector;
 
 namespace {
+  Statistic<> NumLowered("lowerallocs", "Number of allocations lowered");
 
   /// LowerAllocations - Turn malloc and free instructions into %malloc and
   /// %free calls.