diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-01 05:44:08 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-01 05:44:08 +0000 |
commit | 0312c0e09c9de480d78607972ac64a88f4e94a33 (patch) | |
tree | b0bfc5b4e7abc182a7cfe0ec1540078449ba3b0b /lib/Analysis/BasicStore.cpp | |
parent | 17a8e07f122856d474633f437e77674923a98eb0 (diff) |
Rename AnonTypedRegion to TypedViewRegion.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65764 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BasicStore.cpp')
-rw-r--r-- | lib/Analysis/BasicStore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/BasicStore.cpp b/lib/Analysis/BasicStore.cpp index ad542b884a..85d96c4780 100644 --- a/lib/Analysis/BasicStore.cpp +++ b/lib/Analysis/BasicStore.cpp @@ -159,7 +159,7 @@ BasicStoreManager::CastRegion(const GRState* state, const MemRegion* R, return CastResult(state, R); } - return CastResult(state, MRMgr.getAnonTypedRegion(CastToTy, R)); + return CastResult(state, MRMgr.getTypedViewRegion(CastToTy, R)); } SVal BasicStoreManager::getLValueField(const GRState* St, SVal Base, @@ -223,7 +223,7 @@ SVal BasicStoreManager::getLValueElement(const GRState* St, SVal Base, StateMgr.getSymbolManager()); // Layered a typed region on top of this. QualType T = StateMgr.getSymbolManager().getType(Sym); - BaseR = MRMgr.getAnonTypedRegion(T, SymR); + BaseR = MRMgr.getTypedViewRegion(T, SymR); break; } |