diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-08-20 06:23:25 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-08-20 06:23:25 +0000 |
commit | 60d2ec57650362f59204d4aafb3d18f26b666299 (patch) | |
tree | 7bfca94c76073ceeb71ad192a8241669d15b04ea /clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp | |
parent | 876e34b7b5ee76eeca9e0f80ab1119d6b357932b (diff) | |
download | bcm5719-llvm-60d2ec57650362f59204d4aafb3d18f26b666299.tar.gz bcm5719-llvm-60d2ec57650362f59204d4aafb3d18f26b666299.zip |
[analyzer] Handle reads of ObjCPropertyRefExprs implicitly in Environment. No need to bind an explicit value and create a new node.
llvm-svn: 138196
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp index 7e67667802b..34426defec9 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp @@ -237,9 +237,3 @@ void ExprEngine::VisitObjCMessage(const ObjCMessage &msg, // the created nodes in 'Dst'. getCheckerManager().runCheckersForPostObjCMessage(Dst, dstEval, msg, *this); } - -void ExprEngine::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Ex, - ExplodedNode *Pred, - ExplodedNodeSet &Dst) { - MakeNode(Dst, Ex, Pred, Pred->getState()->BindExpr(Ex, loc::ObjCPropRef(Ex))); -} |