This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release_60 in repository llvm.
from 29a8dcdf238 Merging r322623: ------------------------------------------ [...] new c51141594fd Merging r321993: ------------------------------------------ [...] new 338216c337e Merging r321991: ------------------------------------------ [...] new 433754d0db4 Merging r321791 and r321862: ------------------------------ [...] new a1e0ced878e Merging r322473: ------------------------------------------ [...] new 9a1cf21b577 Merging r321870, r321872, and r321994: new 56c600d7e68 Merging r322272: ------------------------------------------ [...] new 7f0f287f2bc Merging r322106: ------------------------------------------ [...] new 489cae9d77d Merging r322223: ------------------------------------------ [...]
The 8 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/Transforms/Vectorize/SLPVectorizer.h | 7 +- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 28 ++- lib/CodeGen/TargetLoweringBase.cpp | 15 +- lib/Target/X86/X86ISelLowering.cpp | 5 + lib/Target/X86/X86TargetTransformInfo.cpp | 3 +- lib/Transforms/Vectorize/LoopVectorize.cpp | 9 +- lib/Transforms/Vectorize/SLPVectorizer.cpp | 61 +----- test/CodeGen/ARM/and-load-combine.ll | 14 +- test/CodeGen/X86/darwin-bzero.ll | 9 +- test/CodeGen/X86/pr35761.ll | 36 ++++ test/CodeGen/X86/pr37563.ll | 42 ++++ test/CodeGen/X86/var-permute-256.ll | 180 +++++++++++++++++ test/Transforms/LoopVectorize/pr35773.ll | 53 +++++ test/Transforms/SLPVectorizer/X86/PR35628_1.ll | 74 +++++++ test/Transforms/SLPVectorizer/X86/PR35628_2.ll | 64 ++++++ test/Transforms/SLPVectorizer/X86/PR35777.ll | 48 +++++ test/Transforms/SLPVectorizer/X86/PR35865.ll | 27 +++ .../X86/insert-element-build-vector.ll | 220 ++++++++++----------- test/Transforms/SLPVectorizer/X86/insertvalue.ll | 162 ++++++++++++--- test/Transforms/SLPVectorizer/X86/value-bug.ll | 48 ++++- 20 files changed, 883 insertions(+), 222 deletions(-) create mode 100644 test/CodeGen/X86/pr35761.ll create mode 100644 test/CodeGen/X86/pr37563.ll create mode 100644 test/Transforms/LoopVectorize/pr35773.ll create mode 100644 test/Transforms/SLPVectorizer/X86/PR35628_1.ll create mode 100644 test/Transforms/SLPVectorizer/X86/PR35628_2.ll create mode 100644 test/Transforms/SLPVectorizer/X86/PR35777.ll create mode 100644 test/Transforms/SLPVectorizer/X86/PR35865.ll