This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 774347e Revert r276896 "Update Clang Parser test error message to mat [...] new 34b6437 [analyzer] Respect statement-specific data in CloneDetection.
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 | 4 +- lib/Analysis/CloneDetection.cpp | 168 ++++++++++++++++++++++++- test/Analysis/copypaste/asm.cpp | 44 +++++++ test/Analysis/copypaste/attributes.cpp | 28 +++++ test/Analysis/copypaste/call.cpp | 24 ++++ test/Analysis/copypaste/catch.cpp | 29 +++++ test/Analysis/copypaste/delete.cpp | 29 +++++ test/Analysis/copypaste/dependent-exist.cpp | 18 +++ test/Analysis/copypaste/expr-types.cpp | 17 +++ test/Analysis/copypaste/false-positives.cpp | 8 -- test/Analysis/copypaste/fold.cpp | 35 ++++++ test/Analysis/copypaste/function-try-block.cpp | 9 ++ test/Analysis/copypaste/functions.cpp | 25 ++++ test/Analysis/copypaste/generic.c | 31 +++++ test/Analysis/copypaste/labels.cpp | 51 ++++++++ test/Analysis/copypaste/lambda.cpp | 24 ++++ 16 files changed, 532 insertions(+), 12 deletions(-) create mode 100644 test/Analysis/copypaste/asm.cpp create mode 100644 test/Analysis/copypaste/attributes.cpp create mode 100644 test/Analysis/copypaste/call.cpp create mode 100644 test/Analysis/copypaste/catch.cpp create mode 100644 test/Analysis/copypaste/delete.cpp create mode 100644 test/Analysis/copypaste/dependent-exist.cpp create mode 100644 test/Analysis/copypaste/expr-types.cpp create mode 100644 test/Analysis/copypaste/fold.cpp create mode 100644 test/Analysis/copypaste/function-try-block.cpp create mode 100644 test/Analysis/copypaste/generic.c create mode 100644 test/Analysis/copypaste/labels.cpp create mode 100644 test/Analysis/copypaste/lambda.cpp