diff options
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) { |