This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f26b091e7d9 [GVNSink] Fix failing GVNSink tests in the reverse iteration bot new 806bdb8daa9 Revert "[PowerPC] Try to simplify a Swap if it feeds a Splat" new fa601dee99f Graph builder implementation.
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: lib/Target/PowerPC/PPCMIPeephole.cpp | 47 -- test/CodeGen/PowerPC/ppc64-peephole-swap.ll | 134 ------ tools/llvm-cfi-verify/CMakeLists.txt | 5 +- tools/llvm-cfi-verify/lib/CMakeLists.txt | 4 +- tools/llvm-cfi-verify/lib/FileAnalysis.h | 3 +- tools/llvm-cfi-verify/lib/GraphBuilder.cpp | 291 ++++++++++++ tools/llvm-cfi-verify/lib/GraphBuilder.h | 133 ++++++ unittests/tools/llvm-cfi-verify/CMakeLists.txt | 5 +- unittests/tools/llvm-cfi-verify/GraphBuilder.cpp | 552 +++++++++++++++++++++++ 9 files changed, 986 insertions(+), 188 deletions(-) delete mode 100644 test/CodeGen/PowerPC/ppc64-peephole-swap.ll create mode 100644 tools/llvm-cfi-verify/lib/GraphBuilder.cpp create mode 100644 tools/llvm-cfi-verify/lib/GraphBuilder.h create mode 100644 unittests/tools/llvm-cfi-verify/GraphBuilder.cpp