This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 0782618d522 [MachineCombiner] Fix initialisation of LastUpdate for incr [...] new 9c28c0a064b Reland 'Classify llvm-cfi-verify.'
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: tools/llvm-cfi-verify/CMakeLists.txt | 4 +- tools/llvm-cfi-verify/LLVMBuild.txt | 2 +- tools/llvm-cfi-verify/lib/CMakeLists.txt | 9 + tools/llvm-cfi-verify/lib/FileAnalysis.cpp | 277 +++++++++++++++++++++ tools/llvm-cfi-verify/lib/FileAnalysis.h | 157 ++++++++++++ tools/llvm-cfi-verify/{ => lib}/LLVMBuild.txt | 10 +- tools/llvm-cfi-verify/llvm-cfi-verify.cpp | 212 ++-------------- unittests/CMakeLists.txt | 1 + unittests/tools/CMakeLists.txt | 1 + .../tools}/llvm-cfi-verify/CMakeLists.txt | 7 +- unittests/tools/llvm-cfi-verify/FileAnalysis.cpp | 216 ++++++++++++++++ 11 files changed, 689 insertions(+), 207 deletions(-) create mode 100644 tools/llvm-cfi-verify/lib/CMakeLists.txt create mode 100644 tools/llvm-cfi-verify/lib/FileAnalysis.cpp create mode 100644 tools/llvm-cfi-verify/lib/FileAnalysis.h copy tools/llvm-cfi-verify/{ => lib}/LLVMBuild.txt (75%) create mode 100644 unittests/tools/CMakeLists.txt copy {tools => unittests/tools}/llvm-cfi-verify/CMakeLists.txt (72%) create mode 100644 unittests/tools/llvm-cfi-verify/FileAnalysis.cpp