diff options
author | Chris Lattner <sabre@nondot.org> | 2006-12-19 22:23:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-12-19 22:23:21 +0000 |
commit | 61bc8f8ca4a5a8277b9c46486e5acd5648b9b9a3 (patch) | |
tree | 3a9f00fcca39dc7400e2e843c48e34f6eb623abc /lib/Transforms/Instrumentation/RSProfiling.cpp | |
parent | d216e8ba60494caacf919cbf5fef110d48f0d162 (diff) |
remove dead statistic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32695 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/RSProfiling.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/RSProfiling.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Transforms/Instrumentation/RSProfiling.cpp b/lib/Transforms/Instrumentation/RSProfiling.cpp index c14915c9a5..ab570e4591 100644 --- a/lib/Transforms/Instrumentation/RSProfiling.cpp +++ b/lib/Transforms/Instrumentation/RSProfiling.cpp @@ -39,11 +39,9 @@ #include "llvm/DerivedTypes.h" #include "llvm/Transforms/Scalar.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h" -#include "llvm/ADT/Statistic.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Transforms/Instrumentation.h" -//#include "ProfilingUtils.h" #include "RSProfiling.h" #include <set> #include <map> @@ -52,8 +50,6 @@ using namespace llvm; namespace { - Statistic NumBackEdges("bedge", "Number of BackEdges"); - enum RandomMeth { GBV, GBVO, HOSTCC }; |