diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-06 01:50:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-06 01:50:04 +0000 |
commit | ec589036234d4633b820e43e3e284be7bc2b6551 (patch) | |
tree | c485997b9b5d2ab18ce30c568db14b658978434e /llvm/lib/Transforms/Hello | |
parent | 979804d800cc5f84d67468921e3188bd3fbebed6 (diff) | |
download | bcm5719-llvm-ec589036234d4633b820e43e3e284be7bc2b6551.tar.gz bcm5719-llvm-ec589036234d4633b820e43e3e284be7bc2b6551.zip |
counter should be unsigned.
llvm-svn: 32252
Diffstat (limited to 'llvm/lib/Transforms/Hello')
-rw-r--r-- | llvm/lib/Transforms/Hello/Hello.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Hello/Hello.cpp b/llvm/lib/Transforms/Hello/Hello.cpp index e02406d81d5..a91360f962d 100644 --- a/llvm/lib/Transforms/Hello/Hello.cpp +++ b/llvm/lib/Transforms/Hello/Hello.cpp @@ -21,7 +21,7 @@ using namespace llvm; namespace { - Statistic<int> HelloCounter("hellocount", + Statistic<> HelloCounter("hellocount", "Counts number of functions greeted"); // Hello - The first implementation, without getAnalysisUsage. struct Hello : public FunctionPass { |