This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 4aa93d2 Un-tabify source files, NFC. new a501e19 [analyzer] Re-apply r283093 "Add extra notes to ObjCDeallocChecker" new b1769b7 [analyzer] Re-apply r283094 "Improve CloneChecker diagnostics"
The 2 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/Analysis/CloneDetection.h | 10 +- lib/Analysis/CloneDetection.cpp | 26 ++--- lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp | 32 ++++++- lib/StaticAnalyzer/Checkers/CloneChecker.cpp | 106 +++++++++++---------- test/Analysis/DeallocMissingRelease.m | 72 ++++++++++++++ test/Analysis/PR2978.m | 18 ++-- test/Analysis/copypaste/blocks.cpp | 4 +- test/Analysis/copypaste/function-try-block.cpp | 4 +- test/Analysis/copypaste/functions.cpp | 4 +- test/Analysis/copypaste/macro-complexity.cpp | 8 +- test/Analysis/copypaste/macros.cpp | 10 +- test/Analysis/copypaste/objc-methods.m | 4 +- .../plist-diagnostics-notes-as-events.cpp | 97 +++++++++++++++++++ test/Analysis/copypaste/plist-diagnostics.cpp | 71 ++++++++++++++ test/Analysis/copypaste/sub-sequences.cpp | 4 +- test/Analysis/copypaste/suspicious-clones.cpp | 20 ++-- test/Analysis/copypaste/text-diagnostics.cpp | 17 ++++ test/Analysis/properties.m | 6 ++ 18 files changed, 408 insertions(+), 105 deletions(-) create mode 100644 test/Analysis/copypaste/plist-diagnostics-notes-as-events.cpp create mode 100644 test/Analysis/copypaste/plist-diagnostics.cpp create mode 100644 test/Analysis/copypaste/text-diagnostics.cpp