summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/ASTContext.cpp
diff options
context:
space:
mode:
authorVlad Tsyrklevich <vlad@tsyrklevich.net>2019-02-25 19:53:13 +0000
committerVlad Tsyrklevich <vlad@tsyrklevich.net>2019-02-25 19:53:13 +0000
commite50038e4dc53caee1acc811362ac0b15e00ef5eb (patch)
tree3a22a2093c38dc77c30a655f57b0778285f01e9c /clang/lib/AST/ASTContext.cpp
parent316c58e8f1771a145f797c0bd266565cbb541f96 (diff)
downloadbcm5719-llvm-e50038e4dc53caee1acc811362ac0b15e00ef5eb.tar.gz
bcm5719-llvm-e50038e4dc53caee1acc811362ac0b15e00ef5eb.zip
Revert "Make static counters in ASTContext non-static."
This reverts commit r354795, I suspect it is causing test failures on MSan sanitizer bots. llvm-svn: 354812
Diffstat (limited to 'clang/lib/AST/ASTContext.cpp')
-rw-r--r--clang/lib/AST/ASTContext.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp
index f968c6260e8..46cdd9a93f6 100644
--- a/clang/lib/AST/ASTContext.cpp
+++ b/clang/lib/AST/ASTContext.cpp
@@ -94,6 +94,19 @@
using namespace clang;
+unsigned ASTContext::NumImplicitDefaultConstructors;
+unsigned ASTContext::NumImplicitDefaultConstructorsDeclared;
+unsigned ASTContext::NumImplicitCopyConstructors;
+unsigned ASTContext::NumImplicitCopyConstructorsDeclared;
+unsigned ASTContext::NumImplicitMoveConstructors;
+unsigned ASTContext::NumImplicitMoveConstructorsDeclared;
+unsigned ASTContext::NumImplicitCopyAssignmentOperators;
+unsigned ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
+unsigned ASTContext::NumImplicitMoveAssignmentOperators;
+unsigned ASTContext::NumImplicitMoveAssignmentOperatorsDeclared;
+unsigned ASTContext::NumImplicitDestructors;
+unsigned ASTContext::NumImplicitDestructorsDeclared;
+
enum FloatingRank {
Float16Rank, HalfRank, FloatRank, DoubleRank, LongDoubleRank, Float128Rank
};
OpenPOWER on IntegriCloud