[PATCH] D53812: [Analyzer] Iterator Checker - Forbid increments past the begin() and decrements past the end() of containers
Artem Dergachev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 30 14:17:30 PST 2018
NoQ accepted this revision.
NoQ added a comment.
This revision is now accepted and ready to land.
Makes perfect sense to me!
================
Comment at: test/Analysis/iterator-range.cpp:190
+ auto i0 = L.begin();
+ --i0; // expected-warning{{Iterator accessed outside of its range}}
+}
----------------
I guess we'll have to come up with a separate warning text for this case, as there's no access happening through the iterator.
Regardless of how the final message would look, i suggest adding logic for having a different message now, so that we didn't forget about this case later.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D53812/new/
https://reviews.llvm.org/D53812
More information about the cfe-commits
mailing list