diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-01-11 02:34:45 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-01-11 02:34:45 +0000 |
commit | e36de1fe51c39d9161915dd3dbef880954af6476 (patch) | |
tree | af3a0d8eb142238e2bf877e4e6c8ba4e3d2b7a29 /lib/StaticAnalyzer/SimpleConstraintManager.cpp | |
parent | 7d5c0c1273bdc1cb3dff1cb5a62d07b1439e82c7 (diff) |
Rename misc. methods in GRSubEngine to start
with a lower-case letter. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123211 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/SimpleConstraintManager.cpp')
-rw-r--r-- | lib/StaticAnalyzer/SimpleConstraintManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/SimpleConstraintManager.cpp b/lib/StaticAnalyzer/SimpleConstraintManager.cpp index e54d0ffe00..11bc5698a9 100644 --- a/lib/StaticAnalyzer/SimpleConstraintManager.cpp +++ b/lib/StaticAnalyzer/SimpleConstraintManager.cpp @@ -69,7 +69,7 @@ const GRState *SimpleConstraintManager::assume(const GRState *state, const GRState *SimpleConstraintManager::assume(const GRState *state, Loc cond, bool assumption) { state = assumeAux(state, cond, assumption); - return SU.ProcessAssume(state, cond, assumption); + return SU.processAssume(state, cond, assumption); } const GRState *SimpleConstraintManager::assumeAux(const GRState *state, @@ -118,7 +118,7 @@ const GRState *SimpleConstraintManager::assume(const GRState *state, NonLoc cond, bool assumption) { state = assumeAux(state, cond, assumption); - return SU.ProcessAssume(state, cond, assumption); + return SU.processAssume(state, cond, assumption); } static BinaryOperator::Opcode NegateComparison(BinaryOperator::Opcode op) { |