This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e217acab66 [clang-format] square parens with one token are not Objectiv [...] new 6b6d467fc0 [AST] Add a method to get a call type from an ObjCMessageExpr new ad1e9725fd [analysis] Introduce an AnyCall helper class, for abstractio [...] new d86db81727 [analyzer] Port RetainSummaryManager to the new AnyCall inte [...]
The 3 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/AST/ExprObjC.h | 7 + include/clang/Analysis/AnyCall.h | 174 +++++++++++++++++++++ .../Core => Analysis}/RetainSummaryManager.h | 83 ++++------ lib/ARCMigrate/CMakeLists.txt | 2 - lib/ARCMigrate/ObjCMT.cpp | 2 +- lib/AST/ExprObjC.cpp | 25 +++ lib/Analysis/CMakeLists.txt | 1 + .../Core => Analysis}/RetainSummaryManager.cpp | 105 +++++++------ .../RetainCountChecker/RetainCountChecker.cpp | 28 +++- .../RetainCountChecker/RetainCountChecker.h | 14 +- .../RetainCountChecker/RetainCountDiagnostics.h | 3 +- lib/StaticAnalyzer/Core/CMakeLists.txt | 1 - 12 files changed, 333 insertions(+), 112 deletions(-) create mode 100644 include/clang/Analysis/AnyCall.h rename include/clang/{StaticAnalyzer/Core => Analysis}/RetainSummaryManager.h (93%) rename lib/{StaticAnalyzer/Core => Analysis}/RetainSummaryManager.cpp (94%)