diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-08-03 21:01:21 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-08-03 21:01:21 +0000 |
commit | 98f6f2573e400a4245cfb2d6976ffb8a875d25c7 (patch) | |
tree | 14786cc7eedefd6d4b2a9a8930cff82f9230e42f | |
parent | 667f36accdacde57f101f8b6b61abb912f7a8e73 (diff) |
Regression fix: reset 'DisplayedFunction' when a new function/method decl gets analyzed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77996 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/AnalysisManager.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Analysis/PathSensitive/AnalysisManager.h b/include/clang/Analysis/PathSensitive/AnalysisManager.h index 38a2af2628..dd274da1e9 100644 --- a/include/clang/Analysis/PathSensitive/AnalysisManager.h +++ b/include/clang/Analysis/PathSensitive/AnalysisManager.h @@ -80,6 +80,7 @@ public: void setContext(Decl *D) { RootContext = ContextMgr.getContext(D); + DisplayedFunction = false; } Decl *getCodeDecl() const { |