This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 4bf0c5df66 Revert "[clang-format] Emit absolute splits before lines for [...] new 6083032511 [analyzer] Make StmtDataCollector customizable
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/AST/DataCollection.h | 65 +++++++++++ include/clang/Analysis/CloneDetection.h | 190 -------------------------------- lib/AST/CMakeLists.txt | 1 + lib/AST/DataCollection.cpp | 50 +++++++++ lib/AST/StmtDataCollectors.inc | 141 ++++++++++++++++++++++++ lib/Analysis/CloneDetection.cpp | 112 +++++++++++-------- unittests/AST/CMakeLists.txt | 1 + unittests/AST/DataCollectionTest.cpp | 173 +++++++++++++++++++++++++++++ 8 files changed, 499 insertions(+), 234 deletions(-) create mode 100644 include/clang/AST/DataCollection.h create mode 100644 lib/AST/DataCollection.cpp create mode 100644 lib/AST/StmtDataCollectors.inc create mode 100644 unittests/AST/DataCollectionTest.cpp