This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 04d2814 PM: Port DCE to the new pass manager new 950aa30 [DeadStoreElimination] Shorten beginning of memset overwritte [...] new e6cf9dc PM: Reorder the functions used for SinkingPass. NFC new 9d0b7e9 PM: Port SinkingPass to the new pass manager
The 3 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 | 2 +- include/llvm/Transforms/Scalar/{DCE.h => Sink.h} | 15 +- lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/Scalar/DeadStoreElimination.cpp | 97 +++++--- lib/Transforms/Scalar/Scalar.cpp | 2 +- lib/Transforms/Scalar/Sink.cpp | 245 +++++++++++---------- .../DeadStoreElimination/OverwriteStoreBegin.ll | 90 ++++++++ test/Transforms/Sink/basic.ll | 1 + test/Transforms/Sink/convergent.ll | 1 - 10 files changed, 302 insertions(+), 153 deletions(-) copy include/llvm/Transforms/Scalar/{DCE.h => Sink.h} (54%) create mode 100644 test/Transforms/DeadStoreElimination/OverwriteStoreBegin.ll