This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-arm-lts-defconfig in repository toolchain/ci/llvm-project.
from 745b6deaccf Reland 'Fixed -Wdeprecated-copy warnings. NFCI.' adds bc2b380c0d3 [pdbutil] Fixed -Wdeprecated-copy in DbiModuleDescriptor adds 9e260c12bce [Diagnostics] Make behaviour of Clang's -Wdeprecated-copy s [...] adds e0297a8bee6 [ModuloSchedule] Fix a bug in experimental expander adds d1dded28da2 [PowerPC] Spill CR LT bits on P9 using setb adds f04a3e981d3 Fixed -Wdeprecated-copy warnings in gtest. NFCI. adds f575f12c646 [InstCombine] remove identity shuffle simplification for ma [...] adds ba4017670e1 [Diagnostics] Warn for comparison with string literals expa [...] adds 6078be698d9 [TableGen] Fixed 'unused but set variable' warning. NFCI adds 9a432161c68 [LoopInterchange] Adjust assertions when updating successors. new 1de788a1f16 [mips] Split test into MIPS and microMIPS parts. NFC new 9d24933f79d Recommit f0c2a5a "[LV] Generalize conditions for sinking in [...] new e8a4e5892bd [CMake] Use correct include path for InstrProfData.inc on Darwin
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: clang/include/clang/Basic/DiagnosticSemaKinds.td | 2 +- clang/lib/Sema/SemaDeclCXX.cpp | 5 +- clang/lib/Sema/SemaExpr.cpp | 85 +++---- clang/test/Sema/exprs.c | 2 +- clang/test/Sema/warn-stringcompare.c | 29 +++ clang/test/SemaCXX/deprecated.cpp | 6 + .../cmake/Modules/CompilerRTDarwinUtils.cmake | 5 +- llvm/include/llvm/CodeGen/ModuloSchedule.h | 6 + .../DebugInfo/PDB/Native/DbiModuleDescriptor.h | 5 +- llvm/lib/Analysis/IVDescriptors.cpp | 44 ++-- llvm/lib/CodeGen/ModuloSchedule.cpp | 76 +++++-- .../DebugInfo/PDB/Native/DbiModuleDescriptor.cpp | 5 - llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp | 15 ++ .../InstCombine/InstCombineSimplifyDemanded.cpp | 24 ++ .../InstCombine/InstCombineVectorOps.cpp | 24 -- llvm/lib/Transforms/Scalar/LoopInterchange.cpp | 54 +++-- .../Vectorize/LoopVectorizationLegality.cpp | 12 + llvm/test/CodeGen/Hexagon/swp-epilog-phi12.ll | 2 +- llvm/test/CodeGen/Hexagon/swp-stages4.ll | 1 + llvm/test/CodeGen/PowerPC/spill_p9_setb.ll | 56 +++++ llvm/test/MC/Mips/micromips-sc-expansion.s | 34 +++ llvm/test/MC/Mips/sc-expansion.s | 26 --- llvm/test/Transforms/InstCombine/X86/x86-avx2.ll | 3 +- llvm/test/Transforms/InstCombine/X86/x86-avx512.ll | 18 +- llvm/test/Transforms/InstCombine/X86/x86-fma.ll | 4 +- llvm/test/Transforms/InstCombine/X86/x86-pack.ll | 9 +- llvm/test/Transforms/InstCombine/X86/x86-pshufb.ll | 3 +- llvm/test/Transforms/InstCombine/X86/x86-sse4a.ll | 20 +- .../test/Transforms/InstCombine/X86/x86-vpermil.ll | 9 +- llvm/test/Transforms/InstCombine/shuffle_select.ll | 3 +- .../Transforms/InstCombine/vec_demanded_elts.ll | 9 +- llvm/test/Transforms/InstCombine/vec_shuffle.ll | 3 +- .../update-condbranch-duplicate-successors.ll | 145 ++++++++++++ .../first-order-recurrence-complex.ll | 245 +++++++++++++++++++++ .../first-order-recurrence-multiply-recurrences.ll | 45 ++++ llvm/utils/TableGen/OptRSTEmitter.cpp | 2 - .../googlemock/include/gmock/gmock-actions.h | 3 +- .../gtest/internal/gtest-param-util-generated.h | 154 ++++++------- .../googletest/include/gtest/internal/gtest-port.h | 4 +- 39 files changed, 937 insertions(+), 260 deletions(-) create mode 100644 clang/test/Sema/warn-stringcompare.c create mode 100644 llvm/test/CodeGen/PowerPC/spill_p9_setb.ll create mode 100644 llvm/test/MC/Mips/micromips-sc-expansion.s create mode 100644 llvm/test/Transforms/LoopInterchange/update-condbranch-duplicat [...] create mode 100644 llvm/test/Transforms/LoopVectorize/first-order-recurrence-complex.ll create mode 100644 llvm/test/Transforms/LoopVectorize/first-order-recurrence-multi [...]