diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-05-09 04:08:27 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-05-09 04:08:27 +0000 |
commit | d9b6ad609ef0b90527e848ba69dc2e492771be4f (patch) | |
tree | fe1fc0ebf39cf16920dbd31bae53fdd01be12108 /lib/Analysis/RegionStore.cpp | |
parent | a82d8aa5b3b3d24998b4d98b9f45a43cc84cac6f (diff) |
Rename:
SymbolRegionRValue => SymbolRegionValue
SymExpr::RegionRValue => SymExpr::RegionValueKind
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionStore.cpp')
-rw-r--r-- | lib/Analysis/RegionStore.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/RegionStore.cpp b/lib/Analysis/RegionStore.cpp index 6e9a1a684d..a23a47ecc8 100644 --- a/lib/Analysis/RegionStore.cpp +++ b/lib/Analysis/RegionStore.cpp @@ -824,7 +824,7 @@ SVal RegionStoreManager::Retrieve(const GRState* St, Loc L, QualType T) { if (SR == SelfRegion) { // FIXME: Do we need to handle the case where the super region // has a view? We want to canonicalize the bindings. - return ValMgr.getRValueSymbolVal(R); + return ValMgr.getRegionValueSymbolVal(R); } // Otherwise, we need a new symbol. For now return Unknown. @@ -846,7 +846,7 @@ SVal RegionStoreManager::Retrieve(const GRState* St, Loc L, QualType T) { VD->hasGlobalStorage()) { QualType VTy = VD->getType(); if (Loc::IsLocType(VTy) || VTy->isIntegerType()) - return ValMgr.getRValueSymbolVal(VR); + return ValMgr.getRegionValueSymbolVal(VR); else return UnknownVal(); } @@ -862,7 +862,7 @@ SVal RegionStoreManager::Retrieve(const GRState* St, Loc L, QualType T) { // All other integer values are symbolic. if (Loc::IsLocType(RTy) || RTy->isIntegerType()) - return ValMgr.getRValueSymbolVal(R); + return ValMgr.getRegionValueSymbolVal(R); else return UnknownVal(); } |