This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b7e0749 Reassociate: Convert another functor into a lambda. NFC new 573cbb5 [X86] Replace -mcpu with -mattr in several tests Differential [...] new c943cfa PM: Port Reassociate to the new pass manager new ba357d2 [X86] Make sure it is safe to clobber EFLAGS, if need be, whe [...]
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/Reassociate.h | 101 +++++++++++ lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Target/X86/X86FrameLowering.cpp | 6 + lib/Target/X86/X86FrameLowering.h | 10 ++ lib/Transforms/Scalar/Reassociate.cpp | 240 +++++++++++---------------- lib/Transforms/Scalar/Scalar.cpp | 2 +- test/CodeGen/X86/i686-win-shrink-wrapping.ll | 44 +++++ test/CodeGen/X86/machine-cp.ll | 2 +- test/CodeGen/X86/misched-ilp.ll | 4 +- test/CodeGen/X86/pr16360.ll | 2 +- test/CodeGen/X86/sse2.ll | 2 +- test/Transforms/Reassociate/basictest.ll | 1 + 14 files changed, 272 insertions(+), 146 deletions(-) create mode 100644 include/llvm/Transforms/Scalar/Reassociate.h create mode 100644 test/CodeGen/X86/i686-win-shrink-wrapping.ll