diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-05-09 00:50:33 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-05-09 00:50:33 +0000 |
commit | ff6978263439e21d795b0602fabcb38488ef8441 (patch) | |
tree | aafc31915a38f534f7db1637ee7efcdbf7dede6e /lib/Analysis/Store.cpp | |
parent | 80c24182549f45b9b3aa1cec1e547e8c4c09179b (diff) |
rename: MemRegion:
RValueType => ObjectType
LValueType => LocationType
No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/Store.cpp')
-rw-r--r-- | lib/Analysis/Store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/Store.cpp b/lib/Analysis/Store.cpp index 49411b468e..13326ab31f 100644 --- a/lib/Analysis/Store.cpp +++ b/lib/Analysis/Store.cpp @@ -32,7 +32,7 @@ StoreManager::CastRegion(const GRState* state, const MemRegion* R, // Return the same region if the region types are compatible. if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) { - QualType Ta = Ctx.getCanonicalType(TR->getLValueType(Ctx)); + QualType Ta = Ctx.getCanonicalType(TR->getLocationType(Ctx)); if (Ta == ToTy) return CastResult(state, R); |