[PATCH] D47417: [analyzer] Add missing state transition in IteratorChecker
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 30 09:15:29 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL338263: [analyzer] Add missing state transition in IteratorChecker. (authored by rkovacs, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D47417?vs=148735&id=157983#toc
Repository:
rL LLVM
https://reviews.llvm.org/D47417
Files:
cfe/trunk/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
Index: cfe/trunk/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
===================================================================
--- cfe/trunk/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
+++ cfe/trunk/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
@@ -551,6 +551,8 @@
State = State->remove<IteratorComparisonMap>(Comp.first);
}
}
+
+ C.addTransition(State);
}
ProgramStateRef IteratorChecker::evalAssume(ProgramStateRef State, SVal Cond,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47417.157983.patch
Type: text/x-patch
Size: 467 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180730/38d1776f/attachment.bin>
More information about the llvm-commits
mailing list