diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-12-01 22:16:56 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-12-01 22:16:56 +0000 |
commit | 28f47b92e760ccf641ac91cb0fe1c12d9ca89795 (patch) | |
tree | e94e1e4e1e2445b9046bd086bd8e59ec84194658 /lib/Checker/GRState.cpp | |
parent | f48f367cfe096fd307d36aff27d2d5a00e830571 (diff) |
Rename all 'AssumeXXX' methods in libChecker
to 'assumeXXX'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/GRState.cpp')
-rw-r--r-- | lib/Checker/GRState.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Checker/GRState.cpp b/lib/Checker/GRState.cpp index 0170e3c2e3..0a2b9a388f 100644 --- a/lib/Checker/GRState.cpp +++ b/lib/Checker/GRState.cpp @@ -230,7 +230,7 @@ const GRState *GRState::bindExprAndLocation(const Stmt *S, SVal location, return getStateManager().getPersistentState(NewSt); } -const GRState *GRState::AssumeInBound(DefinedOrUnknownSVal Idx, +const GRState *GRState::assumeInBound(DefinedOrUnknownSVal Idx, DefinedOrUnknownSVal UpperBound, bool Assumption) const { if (Idx.isUnknown() || UpperBound.isUnknown()) @@ -271,7 +271,7 @@ const GRState *GRState::AssumeInBound(DefinedOrUnknownSVal Idx, // Finally, let the constraint manager take care of it. ConstraintManager &CM = SM.getConstraintManager(); - return CM.Assume(this, cast<DefinedSVal>(inBound), Assumption); + return CM.assume(this, cast<DefinedSVal>(inBound), Assumption); } const GRState* GRStateManager::getInitialState(const LocationContext *InitLoc) { |