diff options
Diffstat (limited to 'include/clang/Analysis/PathSensitive/GRState.h')
-rw-r--r-- | include/clang/Analysis/PathSensitive/GRState.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Analysis/PathSensitive/GRState.h b/include/clang/Analysis/PathSensitive/GRState.h index 334fc9adeb..1b3b4a599e 100644 --- a/include/clang/Analysis/PathSensitive/GRState.h +++ b/include/clang/Analysis/PathSensitive/GRState.h @@ -422,7 +422,7 @@ public: SVal GetSVal(const GRState* St, Loc LV, QualType T = QualType()) { - return StoreMgr->GetSVal(St->getStore(), LV, T); + return StoreMgr->Retrieve(St->getStore(), LV, T); } SVal GetSVal(const GRState* St, const MemRegion* R) { @@ -430,7 +430,7 @@ public: } void SetSVal(GRState& St, Loc LV, SVal V) { - St.St = StoreMgr->SetSVal(St.St, LV, V); + St.St = StoreMgr->Bind(St.St, LV, V); } const GRState* SetSVal(const GRState* St, Loc LV, SVal V); |