diff options
Diffstat (limited to 'clang/lib/Analysis/GRExprEngine.cpp')
| -rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index 7d56d108deb..c32c424b669 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -2247,7 +2247,7 @@ void GRExprEngine::VisitDeclStmt(DeclStmt* DS, NodeTy* Pred, NodeSet& Dst) {          InitVal = ValMgr.getConjuredSymbolVal(InitEx, Count);        }         -      state = StateMgr.BindDecl(state, VD, InitVal); +      state = state->bindDecl(VD, InitVal);        // The next thing to do is check if the GRTransferFuncs object wants to        // update the state based on the new binding.  If the GRTransferFunc @@ -2257,7 +2257,7 @@ void GRExprEngine::VisitDeclStmt(DeclStmt* DS, NodeTy* Pred, NodeSet& Dst) {                         InitVal);            }       else { -      state = StateMgr.BindDeclWithNoInit(state, VD); +      state = state->bindDeclWithNoInit(VD);        MakeNode(Dst, DS, *I, state);      }    } | 

