diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-11-24 00:54:37 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-11-24 00:54:37 +0000 |
commit | b3b56c6bcd9fddd1d0f52c178c41cb34fac19049 (patch) | |
tree | 830b0bcb407be748d377b367700f47524d6a1823 /clang/lib/Checker/FlatStore.cpp | |
parent | 1ef52416c7e4bfc6936803747264210fcb74138f (diff) | |
download | bcm5719-llvm-b3b56c6bcd9fddd1d0f52c178c41cb34fac19049.tar.gz bcm5719-llvm-b3b56c6bcd9fddd1d0f52c178c41cb34fac19049.zip |
Adjust method calls to reflect name changes in
ImmutableSet/ImmtuableMap/ImmutableList APIs.
Along the way, clean up some method names in
the static analyzer so that they are more
descriptive and/or start with lowercase letters.
llvm-svn: 120071
Diffstat (limited to 'clang/lib/Checker/FlatStore.cpp')
-rw-r--r-- | clang/lib/Checker/FlatStore.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/Checker/FlatStore.cpp b/clang/lib/Checker/FlatStore.cpp index 21fa422166f..bda7a632e24 100644 --- a/clang/lib/Checker/FlatStore.cpp +++ b/clang/lib/Checker/FlatStore.cpp @@ -36,7 +36,7 @@ public: const LocationContext *LC, SVal v); Store getInitialStore(const LocationContext *InitLoc) { - return RBFactory.GetEmptyMap().getRoot(); + return RBFactory.getEmptyMap().getRoot(); } SubRegionMap *getSubRegionMap(Store store) { @@ -97,7 +97,7 @@ SVal FlatStoreManager::Retrieve(Store store, Loc L, QualType T) { RegionBindings B = getRegionBindings(store); const BindingVal *BV = B.lookup(RI.R); if (BV) { - const SVal *V = BVFactory.Lookup(*BV, RI.I); + const SVal *V = BVFactory.lookup(*BV, RI.I); if (V) return *V; else @@ -119,7 +119,7 @@ Store FlatStoreManager::Bind(Store store, Loc L, SVal val) { RegionBindings B = getRegionBindings(store); const BindingVal *V = B.lookup(R); - BindingVal BV = BVFactory.GetEmptyMap(); + BindingVal BV = BVFactory.getEmptyMap(); if (V) BV = *V; @@ -127,8 +127,8 @@ Store FlatStoreManager::Bind(Store store, Loc L, SVal val) { // FIXME: FlatStore should handle regions with unknown intervals. if (!RI.R) return B.getRoot(); - BV = BVFactory.Add(BV, RI.I, val); - B = RBFactory.Add(B, RI.R, BV); + BV = BVFactory.add(BV, RI.I, val); + B = RBFactory.add(B, RI.R, BV); return B.getRoot(); } |