diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-12-06 17:46:33 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-12-06 17:46:33 +0000 |
| commit | 700b873130d0865283319f6e328f1887b19f25f0 (patch) | |
| tree | 0c3de26f259a9ce6c47d509613ac6e0671d01849 /llvm/lib/Transforms/LevelRaise.cpp | |
| parent | acbb456dde4a1561764504b980f9a40cc682e962 (diff) | |
| download | bcm5719-llvm-700b873130d0865283319f6e328f1887b19f25f0.tar.gz bcm5719-llvm-700b873130d0865283319f6e328f1887b19f25f0.zip | |
Detemplatize the Statistic class. The only type it is instantiated with
is 'unsigned'.
llvm-svn: 32279
Diffstat (limited to 'llvm/lib/Transforms/LevelRaise.cpp')
| -rw-r--r-- | llvm/lib/Transforms/LevelRaise.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/LevelRaise.cpp b/llvm/lib/Transforms/LevelRaise.cpp index c8635e181fe..56622693a25 100644 --- a/llvm/lib/Transforms/LevelRaise.cpp +++ b/llvm/lib/Transforms/LevelRaise.cpp @@ -34,22 +34,22 @@ static cl::opt<std::string> StartInst("raise-start-inst", cl::Hidden, cl::value_desc("inst name"), cl::desc("Start raise pass at the instruction with the specified name")); -static Statistic<> +static Statistic NumLoadStorePeepholes("raise", "Number of load/store peepholes"); -static Statistic<> +static Statistic NumGEPInstFormed("raise", "Number of other getelementptr's formed"); -static Statistic<> +static Statistic NumExprTreesConv("raise", "Number of expression trees converted"); -static Statistic<> +static Statistic NumCastOfCast("raise", "Number of cast-of-self removed"); -static Statistic<> +static Statistic NumDCEorCP("raise", "Number of insts DCEd or constprop'd"); -static Statistic<> +static Statistic NumVarargCallChanges("raise", "Number of vararg call peepholes"); #define PRINT_PEEPHOLE(ID, NUM, I) \ |

