This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from cefd547 Modules: add command line option fmodules-disable-diagnostic- [...] new 07b4e2f [analyzer] Add basic capabilities to detect source code clones.
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/Analysis/CloneDetection.h | 235 ++++++++++++++++++ include/clang/StaticAnalyzer/Checkers/Checkers.td | 16 ++ lib/Analysis/CMakeLists.txt | 1 + lib/Analysis/CloneDetection.cpp | 277 ++++++++++++++++++++++ lib/StaticAnalyzer/Checkers/CMakeLists.txt | 1 + lib/StaticAnalyzer/Checkers/CloneChecker.cpp | 96 ++++++++ test/Analysis/copypaste/blocks.cpp | 19 ++ test/Analysis/copypaste/false-positives.cpp | 29 +++ test/Analysis/copypaste/functions.cpp | 25 ++ test/Analysis/copypaste/objc-methods.m | 27 +++ test/Analysis/copypaste/sub-sequences.cpp | 27 +++ 11 files changed, 753 insertions(+) create mode 100644 include/clang/Analysis/CloneDetection.h create mode 100644 lib/Analysis/CloneDetection.cpp create mode 100644 lib/StaticAnalyzer/Checkers/CloneChecker.cpp create mode 100644 test/Analysis/copypaste/blocks.cpp create mode 100644 test/Analysis/copypaste/false-positives.cpp create mode 100644 test/Analysis/copypaste/functions.cpp create mode 100644 test/Analysis/copypaste/objc-methods.m create mode 100644 test/Analysis/copypaste/sub-sequences.cpp