diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-03-31 18:21:31 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-03-31 18:21:31 +0000 |
commit | db2eb5abf4c082d1f0c5c45e39d8cd0300f81e38 (patch) | |
tree | 789728ff661fc70b85ae7447b2c223dc229d2b1b /lib/AST/Type.cpp | |
parent | 2405a0addc2bc627392d9bfe2874bd9431d81d55 (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/Type.cpp')
-rw-r--r-- | lib/AST/Type.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index a18cd0fbca..d50e1d1480 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -22,13 +22,6 @@ #include "llvm/Support/raw_ostream.h" using namespace clang; -#ifndef NDEBUG -llvm::Statistic clang::objc_type_checks = - { "clang", "Number of checks for Objective-C type nodes", 0, 0 }; -llvm::Statistic clang::cxx_type_checks = - { "clang", "Number of checks for C++ type nodes", 0, 0 }; -#endif - bool QualType::isConstant(QualType T, ASTContext &Ctx) { if (T.isConstQualified()) return true; |