summaryrefslogtreecommitdiffstats
path: root/lib/Analysis/Checker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Analysis/Checker.cpp')
-rw-r--r--lib/Analysis/Checker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/Checker.cpp b/lib/Analysis/Checker.cpp
index 0d907e5..fb9d04d 100644
--- a/lib/Analysis/Checker.cpp
+++ b/lib/Analysis/Checker.cpp
@@ -24,10 +24,10 @@ 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 (state && state != B.GetState(Pred)) {
+ if (ST && ST != B.GetState(Pred)) {
static int autoTransitionTag = 0;
B.Tag = &autoTransitionTag;
- addTransition(state);
+ addTransition(ST);
}
else
Dst.Add(Pred);
OpenPOWER on IntegriCloud