commit | 8f6855e64219846070cdc41da74d795712788206 | [log] [tgz] |
---|---|---|
author | Zhongxing Xu <xuzhongxing@gmail.com> | Tue Oct 21 06:27:32 2008 +0000 |
committer | Zhongxing Xu <xuzhongxing@gmail.com> | Tue Oct 21 06:27:32 2008 +0000 |
tree | ddb75e90fc4724e58f32e5ce7294c799f8b0ddf8 | |
parent | 0aee1cd5a35406a78b0f41b0521161206238aed3 [diff] [blame] |
Modify Store interface: GetSVal/SetSVal => Retrieve/Bind. llvm-svn: 57896
diff --git a/clang/lib/Analysis/GRState.cpp b/clang/lib/Analysis/GRState.cpp index 09275e2..828be22 100644 --- a/clang/lib/Analysis/GRState.cpp +++ b/clang/lib/Analysis/GRState.cpp
@@ -63,7 +63,7 @@ SVal V) { Store OldStore = St->getStore(); - Store NewStore = StoreMgr->SetSVal(OldStore, LV, V); + Store NewStore = StoreMgr->Bind(OldStore, LV, V); if (NewStore == OldStore) return St;