mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Eliminate static ctors from Statistics
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32698 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -30,9 +30,9 @@
|
||||
#include <algorithm>
|
||||
using namespace llvm;
|
||||
|
||||
static Statistic NumDeadBlocks("branchfold", "Number of dead blocks removed");
|
||||
static Statistic NumBranchOpts("branchfold", "Number of branches optimized");
|
||||
static Statistic NumTailMerge ("branchfold", "Number of block tails merged");
|
||||
STATISTIC(NumDeadBlocks, "Number of dead blocks removed");
|
||||
STATISTIC(NumBranchOpts, "Number of branches optimized");
|
||||
STATISTIC(NumTailMerge , "Number of block tails merged");
|
||||
static cl::opt<bool> EnableTailMerge("enable-tail-merge", cl::Hidden);
|
||||
|
||||
namespace {
|
||||
|
Reference in New Issue
Block a user