aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclBase.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-03-31 18:21:31 +0000
committerDouglas Gregor <dgregor@apple.com>2010-03-31 18:21:31 +0000
commitdb2eb5abf4c082d1f0c5c45e39d8cd0300f81e38 (patch)
tree789728ff661fc70b85ae7447b2c223dc229d2b1b /lib/AST/DeclBase.cpp
parent2405a0addc2bc627392d9bfe2874bd9431d81d55 (diff)
Remove the AST statistics tracking I added yesterday; it didn't pan out.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclBase.cpp')
-rw-r--r--lib/AST/DeclBase.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/AST/DeclBase.cpp b/lib/AST/DeclBase.cpp
index 522875f64f..c693e153dd 100644
--- a/lib/AST/DeclBase.cpp
+++ b/lib/AST/DeclBase.cpp
@@ -35,13 +35,6 @@ using namespace clang;
// Statistics
//===----------------------------------------------------------------------===//
-#ifndef NDEBUG
-llvm::Statistic clang::objc_decl_checks =
- { "clang", "Number of checks for Objective-C declaration nodes", 0, 0 };
-llvm::Statistic clang::cxx_decl_checks =
- { "clang", "Number of checks for C++ declaration nodes", 0, 0 };
-#endif
-
#define DECL(Derived, Base) static int n##Derived##s = 0;
#include "clang/AST/DeclNodes.def"