diff options
author | Anna Zaks <ganna@apple.com> | 2011-10-24 18:26:12 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-10-24 18:26:12 +0000 |
commit | d231d0130a95336610ab9a42eaeb2cdac19992f3 (patch) | |
tree | f50edd86c3b1d8c4c8f44281c0e636104140abbd /lib/StaticAnalyzer/Core/ExprEngine.cpp | |
parent | 6b6152ba96c164a292cc0b8d8b1d4cecbec27a60 (diff) |
[analyzer] Convert VisitDeclStmt to use local node builder.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142830 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/ExprEngine.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/ExprEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp index 781106c30b..5999dc6bb1 100644 --- a/lib/StaticAnalyzer/Core/ExprEngine.cpp +++ b/lib/StaticAnalyzer/Core/ExprEngine.cpp @@ -1297,7 +1297,7 @@ void ExprEngine::evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, getCheckerManager().runCheckersForBind(CheckedSet, Pred, location, Val, StoreE, *this); - // TODO: Remove TmpDst after NB refactoring is done. + // TODO:AZ Remove TmpDst after NB refactoring is done. ExplodedNodeSet TmpDst; Builder->takeNodes(CheckedSet); PureStmtNodeBuilder Bldr(CheckedSet, TmpDst, *currentBuilderContext); |