diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-01-14 20:34:15 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-01-14 20:34:15 +0000 |
commit | db0594bfc013131f88429add4eb653c285fa94fb (patch) | |
tree | 59a777a9a0c80f939f021c90db0061cba47b3ed3 /lib/StaticAnalyzer/GRState.cpp | |
parent | 2ccf047adf877f5e821210b1ce1a2c8289acadc0 (diff) |
Rename 'RemoveDeadBindings()' to 'removeDeadBindings()'
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/GRState.cpp')
-rw-r--r-- | lib/StaticAnalyzer/GRState.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/StaticAnalyzer/GRState.cpp b/lib/StaticAnalyzer/GRState.cpp index 9c578dda68..60832e8f79 100644 --- a/lib/StaticAnalyzer/GRState.cpp +++ b/lib/StaticAnalyzer/GRState.cpp @@ -36,7 +36,7 @@ GRStateManager::~GRStateManager() { } const GRState* -GRStateManager::RemoveDeadBindings(const GRState* state, +GRStateManager::removeDeadBindings(const GRState* state, const StackFrameContext *LCtx, SymbolReaper& SymReaper) { @@ -49,14 +49,14 @@ GRStateManager::RemoveDeadBindings(const GRState* state, llvm::SmallVector<const MemRegion*, 10> RegionRoots; GRState NewState = *state; - NewState.Env = EnvMgr.RemoveDeadBindings(NewState.Env, SymReaper, + NewState.Env = EnvMgr.removeDeadBindings(NewState.Env, SymReaper, state, RegionRoots); // Clean up the store. - NewState.St = StoreMgr->RemoveDeadBindings(NewState.St, LCtx, + NewState.St = StoreMgr->removeDeadBindings(NewState.St, LCtx, SymReaper, RegionRoots); state = getPersistentState(NewState); - return ConstraintMgr->RemoveDeadBindings(state, SymReaper); + return ConstraintMgr->removeDeadBindings(state, SymReaper); } const GRState *GRStateManager::MarshalState(const GRState *state, |