diff options
| author | Ted Kremenek <kremenek@apple.com> | 2009-06-23 20:38:51 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2009-06-23 20:38:51 +0000 |
| commit | 7df5691d2d23d4d55556f5e218cd79f3d14b6595 (patch) | |
| tree | a3b6e3a37e6363d5c72b521e7bea017f5a1f00c3 /clang/lib/Analysis/GRExprEngine.cpp | |
| parent | 59ee3f507916eff2acbdebb5d6e858a9187ef5bc (diff) | |
| download | bcm5719-llvm-7df5691d2d23d4d55556f5e218cd79f3d14b6595.tar.gz bcm5719-llvm-7df5691d2d23d4d55556f5e218cd79f3d14b6595.zip | |
Remove GRStateManager::BindLoc() and GRStateManager::Unbind().
llvm-svn: 73996
Diffstat (limited to 'clang/lib/Analysis/GRExprEngine.cpp')
| -rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index c32c424b669..42c6ce3dfb6 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -1046,7 +1046,7 @@ void GRExprEngine::EvalBind(NodeSet& Dst, Expr* Ex, NodeTy* Pred, else { // We are binding to a value other than 'unknown'. Perform the binding // using the StoreManager. - newState = StateMgr.BindLoc(state, cast<Loc>(location), Val); + newState = state->bindLoc(cast<Loc>(location), Val); } // The next thing to do is check if the GRTransferFuncs object wants to |

