From: Anna Zaks Date: Fri, 11 May 2012 23:15:18 +0000 (+0000) Subject: [analyzer] Do not walk the types for call graph construction. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8848f34bbde083b8d89f445eb605eaabf30d6a8;p=clang [analyzer] Do not walk the types for call graph construction. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156661 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp b/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp index d79ac04a23..993d841490 100644 --- a/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp +++ b/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp @@ -246,6 +246,7 @@ public: SetOfConstDecls *VisitedCallees); /// Visitors for the RecursiveASTVisitor. + bool shouldWalkTypesOfTypeLocs() const { return false; } /// Handle callbacks for arbitrary Decls. bool VisitDecl(Decl *D) {