aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/GRState.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2008-10-30 05:33:54 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2008-10-30 05:33:54 +0000
commit8cd5aaea92f12c25d65ecff5fc820def4c81c1aa (patch)
treedabdb60a9838e65bbbe345f72c987052a86d5274 /lib/Analysis/GRState.cpp
parent3702af57e399448efa8e2bfd600f009945b5c936 (diff)
Rename:
- SetSVal(GRState*, Loc, SVal) => BindLoc - SetSVal(GRState*, Expr*, SVal) => BindExpr git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58421 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRState.cpp')
-rw-r--r--lib/Analysis/GRState.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Analysis/GRState.cpp b/lib/Analysis/GRState.cpp
index f598ec4b70..ad057c2f09 100644
--- a/lib/Analysis/GRState.cpp
+++ b/lib/Analysis/GRState.cpp
@@ -59,8 +59,7 @@ GRStateManager::RemoveDeadBindings(const GRState* St, Stmt* Loc,
LSymbols, DSymbols);
}
-const GRState* GRStateManager::SetSVal(const GRState* St, Loc LV,
- SVal V) {
+const GRState* GRStateManager::BindLoc(const GRState* St, Loc LV, SVal V) {
Store OldStore = St->getStore();
Store NewStore = StoreMgr->Bind(OldStore, LV, V);