This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 1e698dbb9d [analyzer] PthreadLockChecker: model failed pthread_mutex_de [...] new ab4ea45701 [analyzer] Initial commit for the upcoming refactoring of th [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/StaticAnalyzer/Checkers/Checkers.td | 8 +- lib/StaticAnalyzer/Checkers/CMakeLists.txt | 2 +- lib/StaticAnalyzer/Checkers/IteratorChecker.cpp | 833 ++++++++++++++++++++ .../Checkers/IteratorPastEndChecker.cpp | 840 --------------------- test/Analysis/Inputs/system-header-simulator-cxx.h | 387 ++++++++-- test/Analysis/diagnostics/explicit-suppression.cpp | 2 +- test/Analysis/iterator-past-end.cpp | 205 ----- test/Analysis/iterator-range.cpp | 19 + 8 files changed, 1201 insertions(+), 1095 deletions(-) create mode 100644 lib/StaticAnalyzer/Checkers/IteratorChecker.cpp delete mode 100644 lib/StaticAnalyzer/Checkers/IteratorPastEndChecker.cpp delete mode 100644 test/Analysis/iterator-past-end.cpp create mode 100644 test/Analysis/iterator-range.cpp