Update the example here in the header file.

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

llvm-svn: 11366
This commit is contained in:
Brian Gaeke 2004-02-13 04:49:04 +00:00
parent 7707461afa
commit 50719e9dbc

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