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/GRState.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/GRState.cpp')
| -rw-r--r-- | clang/lib/StaticAnalyzer/Core/GRState.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/GRState.cpp b/clang/lib/StaticAnalyzer/Core/GRState.cpp index 0278a0d385f..80f2ae082be 100644 --- a/clang/lib/StaticAnalyzer/Core/GRState.cpp +++ b/clang/lib/StaticAnalyzer/Core/GRState.cpp @@ -110,7 +110,7 @@ const GRState *GRState::bindDefault(SVal loc, SVal V) const { new_state; } -const GRState *GRState::InvalidateRegions(const MemRegion * const *Begin, +const GRState *GRState::invalidateRegions(const MemRegion * const *Begin, const MemRegion * const *End, const Expr *E, unsigned Count, StoreManager::InvalidatedSymbols *IS, @@ -121,7 +121,7 @@ const GRState *GRState::InvalidateRegions(const MemRegion * const *Begin, if (Eng && Eng->wantsRegionChangeUpdate(this)) { StoreManager::InvalidatedRegions Regions; - Store new_store = Mgr.StoreMgr->InvalidateRegions(St, Begin, End, + Store new_store = Mgr.StoreMgr->invalidateRegions(St, Begin, End, E, Count, IS, invalidateGlobals, &Regions); @@ -132,7 +132,7 @@ const GRState *GRState::InvalidateRegions(const MemRegion * const *Begin, &Regions.back()+1); } - Store new_store = Mgr.StoreMgr->InvalidateRegions(St, Begin, End, + Store new_store = Mgr.StoreMgr->invalidateRegions(St, Begin, End, E, Count, IS, invalidateGlobals, NULL); @@ -140,7 +140,7 @@ const GRState *GRState::InvalidateRegions(const MemRegion * const *Begin, } const GRState *GRState::unbindLoc(Loc LV) const { - assert(!isa<loc::MemRegionVal>(LV) && "Use InvalidateRegion instead."); + assert(!isa<loc::MemRegionVal>(LV) && "Use invalidateRegion instead."); Store OldStore = getStore(); Store NewStore = getStateManager().StoreMgr->Remove(OldStore, LV); |

