From c8848f34bbde083b8d89f445eb605eaabf30d6a8 Mon Sep 17 00:00:00 2001 From: Anna Zaks Date: Fri, 11 May 2012 23:15:18 +0000 Subject: [PATCH] [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 --- lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp | 1 + 1 file changed, 1 insertion(+) 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) { -- 2.50.1