mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +00:00
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:
@@ -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?
|
||||
|
||||
Reference in New Issue
Block a user