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/BugReporterVisitors.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/BugReporterVisitors.cpp')
-rw-r--r-- | lib/Checker/BugReporterVisitors.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Checker/BugReporterVisitors.cpp b/lib/Checker/BugReporterVisitors.cpp index 91cf349107..d466abe068 100644 --- a/lib/Checker/BugReporterVisitors.cpp +++ b/lib/Checker/BugReporterVisitors.cpp @@ -252,14 +252,14 @@ public: // Check if in the previous state it was feasible for this constraint // to *not* be true. - if (PrevN->getState()->Assume(Constraint, !Assumption)) { + if (PrevN->getState()->assume(Constraint, !Assumption)) { isSatisfied = true; // As a sanity check, make sure that the negation of the constraint // was infeasible in the current state. If it is feasible, we somehow // missed the transition point. - if (N->getState()->Assume(Constraint, !Assumption)) + if (N->getState()->assume(Constraint, !Assumption)) return NULL; // We found the transition point for the constraint. We now need to @@ -400,7 +400,7 @@ public: const DefinedOrUnknownSVal *DV = dyn_cast<DefinedOrUnknownSVal>(&V); if (!DV) return 0; - state = state->Assume(*DV, true); + state = state->assume(*DV, true); if (state) return 0; |