diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-13 04:49:04 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-13 04:49:04 +0000 |
commit | a0031cc08c73717341e53c9d5c6c9daa4fcdf5f7 (patch) | |
tree | e3f55a4aeb99d21341ffcccd9816bdf5f4224e6b /include/llvm/ADT | |
parent | f13a3f4dd1eaa89ca9a64a1e820b089facca3366 (diff) | |
download | external_llvm-a0031cc08c73717341e53c9d5c6c9daa4fcdf5f7.zip external_llvm-a0031cc08c73717341e53c9d5c6c9daa4fcdf5f7.tar.gz external_llvm-a0031cc08c73717341e53c9d5c6c9daa4fcdf5f7.tar.bz2 |
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
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r-- | include/llvm/ADT/Statistic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/Statistic.h b/include/llvm/ADT/Statistic.h index 9da645b..c95db3f 100644 --- a/include/llvm/ADT/Statistic.h +++ b/include/llvm/ADT/Statistic.h @@ -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; // //===----------------------------------------------------------------------===// |