This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a223e909914 [X86] Fix bug in legalize vector types - Split large loads new f08c3d1d13d [ExpandMemCmp] Split ExpandMemCmp from CodeGen into its own 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/LinkAllPasses.h | 1 + include/llvm/Transforms/Scalar.h | 8 +- lib/CodeGen/CodeGenPrepare.cpp | 710 ------------------ lib/CodeGen/TargetPassConfig.cpp | 10 +- lib/Transforms/Scalar/CMakeLists.txt | 1 + lib/Transforms/Scalar/ExpandMemCmp.cpp | 828 +++++++++++++++++++++ lib/Transforms/Scalar/Scalar.cpp | 1 + test/CodeGen/Generic/llc-start-stop.ll | 6 +- test/CodeGen/X86/memcmp-optsize.ll | 224 +++--- test/CodeGen/X86/memcmp.ll | 240 +++--- .../ExpandMemCmp}/X86/lit.local.cfg | 0 .../{CodeGenPrepare => ExpandMemCmp}/X86/memcmp.ll | 519 ++++++------- 13 files changed, 1349 insertions(+), 1200 deletions(-) create mode 100644 lib/Transforms/Scalar/ExpandMemCmp.cpp copy test/{Analysis/CostModel => Transforms/ExpandMemCmp}/X86/lit.local.cfg (100%) rename test/Transforms/{CodeGenPrepare => ExpandMemCmp}/X86/memcmp.ll (56%)