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/RangeConstraintManager.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/RangeConstraintManager.cpp')
-rw-r--r-- | lib/StaticAnalyzer/RangeConstraintManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/RangeConstraintManager.cpp b/lib/StaticAnalyzer/RangeConstraintManager.cpp index c89fa50b16..5f0a386c1a 100644 --- a/lib/StaticAnalyzer/RangeConstraintManager.cpp +++ b/lib/StaticAnalyzer/RangeConstraintManager.cpp @@ -243,7 +243,7 @@ public: return i ? *i == V : false; } - const GRState* RemoveDeadBindings(const GRState* St, SymbolReaper& SymReaper); + const GRState* removeDeadBindings(const GRState* St, SymbolReaper& SymReaper); void print(const GRState* St, llvm::raw_ostream& Out, const char* nl, const char *sep); @@ -268,7 +268,7 @@ const llvm::APSInt* RangeConstraintManager::getSymVal(const GRState* St, /// Scan all symbols referenced by the constraints. If the symbol is not alive /// as marked in LSymbols, mark it as dead in DSymbols. const GRState* -RangeConstraintManager::RemoveDeadBindings(const GRState* state, +RangeConstraintManager::removeDeadBindings(const GRState* state, SymbolReaper& SymReaper) { ConstraintRangeTy CR = state->get<ConstraintRange>(); |