This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 7d8cf48c8d1 [ADT] llvm::bsearch, binary search for mere mortals new 309d941d2b0 Add basic loop fusion pass.
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/llvm/InitializePasses.h | 1 + include/llvm/Transforms/Scalar.h | 6 + include/llvm/Transforms/Scalar/LoopFuse.h | 30 + lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/Scalar/CMakeLists.txt | 1 + lib/Transforms/Scalar/LoopFuse.cpp | 1212 +++++++++++++++++++++++++++++ lib/Transforms/Scalar/Scalar.cpp | 1 + test/Transforms/LoopFusion/cannot_fuse.ll | 371 +++++++++ test/Transforms/LoopFusion/four_loops.ll | 136 ++++ test/Transforms/LoopFusion/inner_loops.ll | 86 ++ test/Transforms/LoopFusion/loop_nest.ll | 120 +++ test/Transforms/LoopFusion/simple.ll | 317 ++++++++ 13 files changed, 2283 insertions(+) create mode 100644 include/llvm/Transforms/Scalar/LoopFuse.h create mode 100644 lib/Transforms/Scalar/LoopFuse.cpp create mode 100644 test/Transforms/LoopFusion/cannot_fuse.ll create mode 100644 test/Transforms/LoopFusion/four_loops.ll create mode 100644 test/Transforms/LoopFusion/inner_loops.ll create mode 100644 test/Transforms/LoopFusion/loop_nest.ll create mode 100644 test/Transforms/LoopFusion/simple.ll