aboutsummaryrefslogtreecommitdiff
path: root/lib/Checker/ArrayBoundChecker.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-12-01 22:16:56 +0000
committerTed Kremenek <kremenek@apple.com>2010-12-01 22:16:56 +0000
commit28f47b92e760ccf641ac91cb0fe1c12d9ca89795 (patch)
treee94e1e4e1e2445b9046bd086bd8e59ec84194658 /lib/Checker/ArrayBoundChecker.cpp
parentf48f367cfe096fd307d36aff27d2d5a00e830571 (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/ArrayBoundChecker.cpp')
-rw-r--r--lib/Checker/ArrayBoundChecker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Checker/ArrayBoundChecker.cpp b/lib/Checker/ArrayBoundChecker.cpp
index dccb9a2952..fe532a2b1d 100644
--- a/lib/Checker/ArrayBoundChecker.cpp
+++ b/lib/Checker/ArrayBoundChecker.cpp
@@ -63,8 +63,8 @@ void ArrayBoundChecker::VisitLocation(CheckerContext &C, const Stmt *S, SVal l){
= C.getStoreManager().getSizeInElements(state, ER->getSuperRegion(),
ER->getValueType());
- const GRState *StInBound = state->AssumeInBound(Idx, NumElements, true);
- const GRState *StOutBound = state->AssumeInBound(Idx, NumElements, false);
+ const GRState *StInBound = state->assumeInBound(Idx, NumElements, true);
+ const GRState *StOutBound = state->assumeInBound(Idx, NumElements, false);
if (StOutBound && !StInBound) {
ExplodedNode *N = C.GenerateSink(StOutBound);
if (!N)