diff options
author | Anna Zaks <ganna@apple.com> | 2011-10-18 23:06:33 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-10-18 23:06:33 +0000 |
commit | 319a9184d5ca9f77622b45ae15c08f6b9ce01621 (patch) | |
tree | ff094c6aca3c74345bab7d76ce27221b681e8f3b /lib/StaticAnalyzer/Core/ExprEngineObjC.cpp | |
parent | 67d9fbac82922ef5b6c9ba5ac4a07e80f9960292 (diff) |
[analyzer] Subclassing StmtBuilder from the NodeBuilder
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142451 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/ExprEngineObjC.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/ExprEngineObjC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp b/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp index e0560fdfe4..7827873e9d 100644 --- a/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp +++ b/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp @@ -226,7 +226,7 @@ void ExprEngine::VisitObjCMessage(const ObjCMessage &msg, evalObjCMessage(dstEval, msg, Pred, Pred->getState()); } - assert(Builder->BuildSinks || Builder->hasGeneratedNode); + assert(Builder->BuildSinks || Builder->hasGeneratedNodes()); } // Finally, perform the post-condition check of the ObjCMessageExpr and store |