[PATCH] D45517: [analyzer] WIP: False positive refutation with Z3
Dávid Bolvanský via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sat May 26 14:30:32 PDT 2018
xbolva00 added inline comments.
================
Comment at: lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp:1261
+
+ for (ConstraintRangeTy::iterator I = CR.begin(), E = CR.end(); I != E; ++I) {
+ SymbolRef Sym = I.getKey();
----------------
for (auto I : CR)?
https://reviews.llvm.org/D45517
More information about the cfe-commits
mailing list