diff options
| author | Ted Kremenek <kremenek@apple.com> | 2011-02-11 19:48:15 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2011-02-11 19:48:15 +0000 |
| commit | eddeba0daed6760f0e817bc96e0b848c21de677e (patch) | |
| tree | 426f0b401d24426954c036d8fbfc13589a98d786 /clang/lib/StaticAnalyzer/Core/BasicStore.cpp | |
| parent | 46c50012ca8599e8c7b63bf39f9ef8254b146f47 (diff) | |
| download | bcm5719-llvm-eddeba0daed6760f0e817bc96e0b848c21de677e.tar.gz bcm5719-llvm-eddeba0daed6760f0e817bc96e0b848c21de677e.zip | |
Rename 'InvalidateRegions()' to 'invalidateRegions()'.
llvm-svn: 125395
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/BasicStore.cpp')
| -rw-r--r-- | clang/lib/StaticAnalyzer/Core/BasicStore.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/BasicStore.cpp b/clang/lib/StaticAnalyzer/Core/BasicStore.cpp index e082921b0e6..105b5052422 100644 --- a/clang/lib/StaticAnalyzer/Core/BasicStore.cpp +++ b/clang/lib/StaticAnalyzer/Core/BasicStore.cpp @@ -48,10 +48,10 @@ public: SVal Retrieve(Store store, Loc loc, QualType T = QualType()); - Store InvalidateRegion(Store store, const MemRegion *R, const Expr *E, + Store invalidateRegion(Store store, const MemRegion *R, const Expr *E, unsigned Count, InvalidatedSymbols *IS); - Store InvalidateRegions(Store store, const MemRegion * const *Begin, + Store invalidateRegions(Store store, const MemRegion * const *Begin, const MemRegion * const *End, const Expr *E, unsigned Count, InvalidatedSymbols *IS, bool invalidateGlobals, InvalidatedRegions *Regions); @@ -144,7 +144,7 @@ SVal BasicStoreManager::LazyRetrieve(Store store, const TypedRegion *R) { // Globals and parameters start with symbolic values. // Local variables initially are undefined. - // Non-static globals may have had their values reset by InvalidateRegions. + // Non-static globals may have had their values reset by invalidateRegions. const MemSpaceRegion *MS = VR->getMemorySpace(); if (isa<NonStaticGlobalSpaceRegion>(MS)) { BindingsTy B = GetBindings(store); @@ -523,7 +523,7 @@ StoreManager::BindingsHandler::~BindingsHandler() {} //===----------------------------------------------------------------------===// -Store BasicStoreManager::InvalidateRegions(Store store, +Store BasicStoreManager::invalidateRegions(Store store, const MemRegion * const *I, const MemRegion * const *End, const Expr *E, unsigned Count, @@ -535,7 +535,7 @@ Store BasicStoreManager::InvalidateRegions(Store store, for (BindingsTy::iterator I=B.begin(), End=B.end(); I != End; ++I) { const MemRegion *R = I.getKey(); if (isa<NonStaticGlobalSpaceRegion>(R->getMemorySpace())) - store = InvalidateRegion(store, R, E, Count, IS); + store = invalidateRegion(store, R, E, Count, IS); } } @@ -546,7 +546,7 @@ Store BasicStoreManager::InvalidateRegions(Store store, if (isa<NonStaticGlobalSpaceRegion>(R->getMemorySpace())) continue; } - store = InvalidateRegion(store, *I, E, Count, IS); + store = invalidateRegion(store, *I, E, Count, IS); if (Regions) Regions->push_back(R); } @@ -570,7 +570,7 @@ Store BasicStoreManager::InvalidateRegions(Store store, } -Store BasicStoreManager::InvalidateRegion(Store store, +Store BasicStoreManager::invalidateRegion(Store store, const MemRegion *R, const Expr *E, unsigned Count, |

