This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1de0324 [mips] Do not allow -opt-bisect-limit to skip the PIC call op [...] new 146c52f Add Loop Sink pass to reverse the LICM based of basic block f [...]
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/LinkAllPasses.h | 1 + include/llvm/Transforms/Scalar.h | 7 + include/llvm/Transforms/Utils/LoopUtils.h | 11 + lib/Transforms/Scalar/CMakeLists.txt | 1 + lib/Transforms/Scalar/LICM.cpp | 17 +- lib/Transforms/Scalar/LoopSink.cpp | 328 ++++++++++++++++++++++++++++++ lib/Transforms/Scalar/Scalar.cpp | 5 + test/Transforms/LICM/loopsink.ll | 286 ++++++++++++++++++++++++++ test/Transforms/LICM/sink.ll | 60 ++++++ 10 files changed, 703 insertions(+), 14 deletions(-) create mode 100644 lib/Transforms/Scalar/LoopSink.cpp create mode 100644 test/Transforms/LICM/loopsink.ll create mode 100644 test/Transforms/LICM/sink.ll