diff options
author | Anna Zaks <ganna@apple.com> | 2012-05-11 23:15:18 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-05-11 23:15:18 +0000 |
commit | c8848f34bbde083b8d89f445eb605eaabf30d6a8 (patch) | |
tree | 4bb86697309483b9d6e07cdf478b68dae5323d48 /lib/StaticAnalyzer/Frontend | |
parent | 297ca4593ce77cb4e640e518fcc27d7530b22dc9 (diff) |
[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
Diffstat (limited to 'lib/StaticAnalyzer/Frontend')
-rw-r--r-- | lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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) { |