This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 4c84da47e9 test commit: add a comment new 4451356852 [analyzer] Drop support for GC mode in RetainCountChecker new 06583b81f9 [analyzer] [NFC] Split up RetainCountChecker new 10ae7efe33 [analyzer] [NFC] Split up summary generation in RetainCountC [...] new 56719e5240 [analyzer] [NFC] Move canEval function from RetainCountCheck [...] new e3ee7f2dce [analyzer] [NFC] Move ObjCRetainCount to include/Analysis new d360121f4e [analyzer] Re-instate support for MakeCollectable is RetainC [...] new 9af34252a3 [analyzer] [NFC] Minor refactoring of ISL-specific code in R [...]
The 7 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: .../Checkers => Analysis}/ObjCRetainCount.h | 3 +- lib/ARCMigrate/ObjCMT.cpp | 2 +- lib/StaticAnalyzer/Checkers/CMakeLists.txt | 4 +- lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp | 4156 -------------------- .../RetainCountChecker/RetainCountChecker.cpp | 1435 +++++++ .../RetainCountChecker/RetainCountChecker.h | 446 +++ .../RetainCountChecker/RetainCountDiagnostics.cpp | 568 +++ .../RetainCountChecker/RetainCountDiagnostics.h | 198 + .../RetainCountChecker/RetainCountSummaries.cpp | 886 +++++ .../RetainCountChecker/RetainCountSummaries.h | 518 +++ test/Analysis/CFDateGC.m | 85 - .../retain-release-path-notes-gc.m.plist | 1172 ------ .../retain-release-path-notes.m.plist | 152 +- test/Analysis/PR2599.m | 63 - test/Analysis/retain-release-gc-only.m | 434 -- test/Analysis/retain-release-path-notes-gc.m | 75 - test/Analysis/retain-release-path-notes.m | 6 +- test/Analysis/retain-release.m | 1 - 18 files changed, 4060 insertions(+), 6144 deletions(-) rename include/clang/{StaticAnalyzer/Checkers => Analysis}/ObjCRetainCount.h (98%) delete mode 100644 lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp create mode 100644 lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp create mode 100644 lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h create mode 100644 lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagn [...] create mode 100644 lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagn [...] create mode 100644 lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountSumma [...] create mode 100644 lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountSummaries.h delete mode 100644 test/Analysis/CFDateGC.m delete mode 100644 test/Analysis/Inputs/expected-plists/retain-release-path-notes- [...] delete mode 100644 test/Analysis/PR2599.m delete mode 100644 test/Analysis/retain-release-gc-only.m delete mode 100644 test/Analysis/retain-release-path-notes-gc.m