diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-23 02:49:07 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-07-23 02:49:07 +0000 |
commit | b73279120d67817156717a1625207ee1bbf41477 (patch) | |
tree | cc9cc91a5db94cfb8ab525248e2f0405e9cc4e6c /lib/Checker/GRExprEngine.cpp | |
parent | ad23ebe22b7e52e3875981eeb46a1fd61a7554fb (diff) |
AnalysisContext is not const.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109210 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/GRExprEngine.cpp')
-rw-r--r-- | lib/Checker/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Checker/GRExprEngine.cpp b/lib/Checker/GRExprEngine.cpp index 364f06d460..fe45b7f013 100644 --- a/lib/Checker/GRExprEngine.cpp +++ b/lib/Checker/GRExprEngine.cpp @@ -1445,7 +1445,7 @@ void GRExprEngine::ProcessSwitch(GRSwitchNodeBuilder& builder) { void GRExprEngine::ProcessCallEnter(GRCallEnterNodeBuilder &B) { const StackFrameContext *LocCtx - = AMgr.getStackFrame(const_cast<AnalysisContext *>(B.getCalleeContext()), + = AMgr.getStackFrame(B.getCalleeContext(), B.getLocationContext(), B.getCallExpr(), B.getBlock(), |