This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d3a49e8ae1 [clang] Change to range-based invocation of llvm::sort new 31a8e3fd05 Revert "Fix failing MSan bots"
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: .../StaticAnalyzer/Core/BugReporter/BugReporter.h | 12 +- .../StaticAnalyzer/Core/BugReporter/BugType.h | 11 +- .../StaticAnalyzer/Core/RetainSummaryManager.h | 4 + lib/StaticAnalyzer/Checkers/IteratorChecker.cpp | 12 +- lib/StaticAnalyzer/Checkers/MallocChecker.cpp | 6 +- .../RetainCountChecker/RetainCountChecker.cpp | 164 ++++++--------------- .../RetainCountChecker/RetainCountChecker.h | 22 +-- .../RetainCountChecker/RetainCountDiagnostics.cpp | 123 +++++++++++++--- .../RetainCountChecker/RetainCountDiagnostics.h | 36 +++-- .../Checkers/SimpleStreamChecker.cpp | 6 +- lib/StaticAnalyzer/Checkers/ValistChecker.cpp | 4 +- lib/StaticAnalyzer/Core/BugReporter.cpp | 8 +- lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 32 ++-- lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 6 + lib/StaticAnalyzer/Core/RetainSummaryManager.cpp | 16 +- test/Analysis/os_object_base.h | 54 +++++++ test/Analysis/os_smart_ptr.h | 89 +++++++++++ test/Analysis/osobject-retain-release.cpp | 106 ++++++++----- test/Analysis/test-separate-retaincount.cpp | 10 +- 19 files changed, 459 insertions(+), 262 deletions(-) create mode 100644 test/Analysis/os_object_base.h create mode 100644 test/Analysis/os_smart_ptr.h