diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-05-09 03:57:34 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-05-09 03:57:34 +0000 |
commit | 34d04b3ca9657e96174d98976527965585cec535 (patch) | |
tree | 4437b0fd48750bd26d1ae274e039d367a3694393 /clang/lib/Analysis/GRExprEngine.cpp | |
parent | d73cfc734bbedd910c8d3a56bbc07c643169ea05 (diff) | |
download | bcm5719-llvm-34d04b3ca9657e96174d98976527965585cec535.tar.gz bcm5719-llvm-34d04b3ca9657e96174d98976527965585cec535.zip |
As discussed with Ted, rename TypedRegion::getObjectType() to
TypedRegion::getValueType().
llvm-svn: 71321
Diffstat (limited to 'clang/lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index b92705c3bc4..bc6a36c747c 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -1785,7 +1785,7 @@ void GRExprEngine::VisitObjCForCollectionStmtAux(ObjCForCollectionStmt* S, // FIXME: The proper thing to do is to really iterate over the // container. We will do this with dispatch logic to the store. // For now, just 'conjure' up a symbolic value. - QualType T = R->getObjectType(getContext()); + QualType T = R->getValueType(getContext()); assert (Loc::IsLocType(T)); unsigned Count = Builder->getCurrentBlockCount(); SymbolRef Sym = SymMgr.getConjuredSymbol(elem, T, Count); |