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/Expr.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/Expr.cpp')
-rw-r--r-- | lib/AST/Expr.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 4cb7712e52..6764612c80 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -27,13 +27,6 @@ #include <algorithm> using namespace clang; -#ifndef NDEBUG -llvm::Statistic clang::objc_expr_checks = - { "clang", "Number of checks for Objective-C expression nodes", 0, 0 }; -llvm::Statistic clang::cxx_expr_checks = - { "clang", "Number of checks for C++ expression nodes", 0, 0 }; -#endif - //===----------------------------------------------------------------------===// // Primary Expressions. //===----------------------------------------------------------------------===// |