cleanup some long-dead code
[oota-llvm.git] / include / Support / Statistic.h
index 9da645ba4e519958ebcc8962f049ab6a81f15d44..c95db3f82cb9349d2fa5bd2ad9775ee67c4f6009 100644 (file)
@@ -15,9 +15,9 @@
 // This is useful for reporting information like the number of instructions
 // simplified, optimized or removed by various transformations, like this:
 //
-// static Statistic<> NumInstEliminated("GCSE - Number of instructions killed");
+// static Statistic<> NumInstsKilled("gcse", "Number of instructions killed");
 //
-// Later, in the code: ++NumInstEliminated;
+// Later, in the code: ++NumInstsKilled;
 //
 //===----------------------------------------------------------------------===//