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/Environment.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/Environment.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Environment.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/Environment.cpp b/lib/StaticAnalyzer/Environment.cpp index 1c74352d2c..08ebf39b58 100644 --- a/lib/StaticAnalyzer/Environment.cpp +++ b/lib/StaticAnalyzer/Environment.cpp @@ -140,7 +140,7 @@ static inline bool IsLocation(const Stmt *S) { return (bool) (((uintptr_t) S) & 0x1); } -// RemoveDeadBindings: +// removeDeadBindings: // - Remove subexpression bindings. // - Remove dead block expression bindings. // - Keep live block expression bindings: @@ -148,7 +148,7 @@ static inline bool IsLocation(const Stmt *S) { // see ScanReachableSymbols. // - Mark the region in DRoots if the binding is a loc::MemRegionVal. Environment -EnvironmentManager::RemoveDeadBindings(Environment Env, +EnvironmentManager::removeDeadBindings(Environment Env, SymbolReaper &SymReaper, const GRState *ST, llvm::SmallVectorImpl<const MemRegion*> &DRoots) { |