aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Core/CheckerContext.cpp
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2011-10-18 23:06:38 +0000
committerAnna Zaks <ganna@apple.com>2011-10-18 23:06:38 +0000
commit3152b3cb5b6a2f797d0972c81a5eb3fd69c0d620 (patch)
treeb643eca55d7efda6bcc9fb15eac4a35d31092854 /lib/StaticAnalyzer/Core/CheckerContext.cpp
parent319a9184d5ca9f77622b45ae15c08f6b9ce01621 (diff)
[analyzer] Remove StmtNodeBuilder from CheckerContext
It now only depends on a generic NodeBuilder instead. As part of this change, make the generic node builder results finalized by default. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/CheckerContext.cpp')
-rw-r--r--lib/StaticAnalyzer/Core/CheckerContext.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/StaticAnalyzer/Core/CheckerContext.cpp b/lib/StaticAnalyzer/Core/CheckerContext.cpp
index e380165c2e..26479d0552 100644
--- a/lib/StaticAnalyzer/Core/CheckerContext.cpp
+++ b/lib/StaticAnalyzer/Core/CheckerContext.cpp
@@ -22,8 +22,4 @@ CheckerContext::~CheckerContext() {
E = NB.results_end(); I != E; ++I) {
Dst.Add(*I);
}
-
- // Copy the results into the StmtNodeBuilder.
- //TODO: This will be removed after we completely migrate NodeBuilder.
- B.importNodesFromBuilder(NB);
}