diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-24 08:53:20 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-11-24 08:53:20 +0000 |
commit | 19b78d9e3dbbc27bbcbdd8c3017a00fe88849ecd (patch) | |
tree | 313c72a34a82e178a70c3e47e395c0ae564cb99a /include/clang/Checker/PathSensitive/AnalysisManager.h | |
parent | 5281b8ed0e395603e5ff15ecc01ee0d0dff2e0fd (diff) |
Use StackFrameContext directly in CallEnter program point. Then we don't need
to remake the stackframe everytime in GRExprEngine::ProcessCallEnter().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Checker/PathSensitive/AnalysisManager.h')
-rw-r--r-- | include/clang/Checker/PathSensitive/AnalysisManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Checker/PathSensitive/AnalysisManager.h b/include/clang/Checker/PathSensitive/AnalysisManager.h index fe50699753..79d9903890 100644 --- a/include/clang/Checker/PathSensitive/AnalysisManager.h +++ b/include/clang/Checker/PathSensitive/AnalysisManager.h @@ -154,7 +154,7 @@ public: bool hasIndexer() const { return Idxer != 0; } - const AnalysisContext *getAnalysisContextInAnotherTU(const Decl *D); + AnalysisContext *getAnalysisContextInAnotherTU(const Decl *D); CFG *getCFG(Decl const *D) { return AnaCtxMgr.getContext(D)->getCFG(); |