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

@@ -26,6 +26,7 @@
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "cee"
#include "llvm/Transforms/Scalar.h"
#include "llvm/Constants.h"
#include "llvm/Pass.h"
@@ -44,11 +45,11 @@
#include <algorithm>
using namespace llvm;
namespace {
Statistic NumSetCCRemoved("cee", "Number of setcc instruction eliminated");
Statistic NumOperandsCann("cee", "Number of operands canonicalized");
Statistic BranchRevectors("cee", "Number of branches revectored");
STATISTIC(NumSetCCRemoved, "Number of setcc instruction eliminated");
STATISTIC(NumOperandsCann, "Number of operands canonicalized");
STATISTIC(BranchRevectors, "Number of branches revectored");
namespace {
class ValueInfo;
class Relation {
Value *Val; // Relation to what value?