Switch over Transforms/Scalar to use the STATISTIC macro. For each statistic

converted, we lose a static initializer.  This also allows GCC to emit warnings
about unused statistics.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32690 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2006-12-19 21:40:18 +00:00
parent 193c88cb56
commit 0e5f499638
21 changed files with 101 additions and 102 deletions

View File

@@ -36,9 +36,9 @@
#include <algorithm>
using namespace llvm;
namespace {
Statistic NumUnrolled("loop-unroll", "Number of loops completely unrolled");
STATISTIC(NumUnrolled, "Number of loops completely unrolled");
namespace {
cl::opt<unsigned>
UnrollThreshold("unroll-threshold", cl::init(100), cl::Hidden,
cl::desc("The cut-off point for loop unrolling"));