Update the example here in the header file.

I don't know about you guys, but I rarely read the .html manuals :-)


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11366 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2004-02-13 04:49:04 +00:00
parent f13a3f4dd1
commit a0031cc08c
2 changed files with 4 additions and 4 deletions

View 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;
//
//===----------------------------------------------------------------------===//

View 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;
//
//===----------------------------------------------------------------------===//