diff options
author | Anna Zaks <ganna@apple.com> | 2011-08-11 00:11:21 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-08-11 00:11:21 +0000 |
commit | 0e89061a399bae32f0eca5b85658ad66a58c504d (patch) | |
tree | 1b40b132a64a83b368d3dd080e1bca9f9fcbc8bd /lib/StaticAnalyzer/Core/CheckerContext.cpp | |
parent | db5e8cd095d1ffdd18f5620ad2348b5f386bebe3 (diff) |
Cleanup: remove CleanedSate member and GetState() wrapper from StmtNodeBuilder, not needed as of r137273.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137284 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/CheckerContext.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/CheckerContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/CheckerContext.cpp b/lib/StaticAnalyzer/Core/CheckerContext.cpp index f6fb8f256c..3920a4990a 100644 --- a/lib/StaticAnalyzer/Core/CheckerContext.cpp +++ b/lib/StaticAnalyzer/Core/CheckerContext.cpp @@ -23,7 +23,7 @@ CheckerContext::~CheckerContext() { // if we are building sinks or we generated a node and decided to not // add it as a transition. if (Dst.size() == size && !B.BuildSinks && !B.hasGeneratedNode) { - if (ST && ST != B.GetState(Pred)) { + if (ST && ST != Pred->getState()) { static int autoTransitionTag = 0; addTransition(ST, &autoTransitionTag); } |