Updates to work with recent Statistic's changes:
[oota-llvm.git] / lib / Bytecode / Writer / InstructionWriter.cpp
index 49365af17e261e423a6fd78721094ef0665c670d..fe03554827f8667a3115850cbd20c4e50c4e89f6 100644 (file)
 #include "llvm/DerivedTypes.h"
 #include "llvm/iOther.h"
 #include "llvm/iTerminators.h"
-#include "Support/StatisticReporter.h"
+#include "Support/Statistic.h"
 #include <algorithm>
 
 static Statistic<> 
-NumOversized("bytecodewriter\t- Number of oversized instructions");
+NumOversized("bytecodewriter", "Number of oversized instructions");
 static Statistic<> 
-NumNormal("bytecodewriter\t- Number of normal instructions");
+NumNormal("bytecodewriter", "Number of normal instructions");
 
 typedef unsigned char uchar;