This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4fe807c8084 [AsmPrinter] defer %c to base class for ARM, PPC, and Hexagon. NFC new ea4c7e531ca 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 | 1215 +++++++++++++++++++++++++++++ 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, 2286 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