This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 4c0ade3 Reverting r275115 which caused PR28634. When empty (forwardin [...] new 887e0c0 [analyzer] Add checker modeling potential C++ self-assignment
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 | 4 + .../Core/BugReporter/BugReporterVisitor.h | 16 ++++ lib/StaticAnalyzer/Checkers/CMakeLists.txt | 1 + .../Checkers/CXXSelfAssignmentChecker.cpp | 62 +++++++++++++++ lib/StaticAnalyzer/Core/BugReporter.cpp | 1 + lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 53 +++++++++++++ lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp | 11 ++- test/Analysis/self-assign.cpp | 89 ++++++++++++++++++++++ 8 files changed, 234 insertions(+), 3 deletions(-) create mode 100644 lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp create mode 100644 test/Analysis/self-assign.cpp