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-stable-defconfig in repository toolchain/ci/llvm-monorepo.
from 5ba271b25cf add Kang Zhang(shkzhang@cn.ibm.com) to the CREDITS.TXT adds af0f232d609 [llvm-mca] Add support for instructions with a variadic num [...] adds a2243ad680a [SelectionDAG] move constant or splat functions to common location adds e44347d824a [IPSCCP] Use input operand instead of OriginalOp for ssa_copy. adds 4a77c5f604a [x86] add tests for select-of-fp-constants; NFC adds e7bb99347ad [x86] limit transform for select-of-fp-constants adds 093425c9608 [CodeGen] translate MS rotate builtins to LLVM funnel-shift [...] adds 243b068756c [MetadataTest] Fix off-by-one strncpy warning reported by g [...] adds 9e38f8a5618 [CodeComplete] Simplify CodeCompleteConsumer.cpp, NFC adds 16effb77859 [Support/FileSystem] Add sub-second precision for atime/mti [...] adds ebe1cc58a68 A "constexpr" is evaluated in a constant context. Make sure [...] adds a796e890bfa [PowerPC] Fix inconsistent ImmMustBeMultipleOf for same ins [...] adds bc4996263a7 [X86] Add test cases to show bad type legalization of fptos [...] adds df56c54691b Revert "[PowerPC] Fix inconsistent ImmMustBeMultipleOf for [...] new 61624d9ac0d [LLD][ELF] - Add a test for non-null terminated mergeable s [...] new 7fb92dfb10a [ELF] - Added test case for invalid relocation target error [...] new 0fece9b7333 [clang-tidy] Don't generate incorrect fixes for class with [...]
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-tidy/modernize/MakeSmartPtrCheck.cpp | 13 + .../test/clang-tidy/modernize-make-unique.cpp | 59 ++++ clang/lib/AST/ExprConstant.cpp | 2 + clang/lib/CodeGen/CGBuiltin.cpp | 50 +-- clang/lib/Sema/CodeCompleteConsumer.cpp | 146 ++++----- clang/test/CodeGen/ms-intrinsics-rotations.c | 99 ++---- clang/test/SemaCXX/constant-expression-cxx1y.cpp | 8 + lld/test/ELF/Inputs/bad-reloc-target.test | 21 ++ lld/test/ELF/bad-reloc-target.test | 29 ++ lld/test/ELF/mergeable-errors.s | 8 + llvm/cmake/config-ix.cmake | 6 + llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 14 +- llvm/include/llvm/CodeGen/TargetLowering.h | 8 + llvm/include/llvm/Config/config.h.cmake | 6 + llvm/include/llvm/Support/Chrono.h | 8 + llvm/include/llvm/Support/FileSystem.h | 29 +- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 52 +-- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 18 +- llvm/lib/Support/Unix/Path.inc | 21 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 8 + llvm/lib/Target/X86/X86ISelLowering.h | 2 + llvm/lib/Transforms/Scalar/SCCP.cpp | 10 +- llvm/test/CodeGen/X86/2009-03-07-FPConstSelect.ll | 18 - llvm/test/CodeGen/X86/avx512-cmp.ll | 6 +- llvm/test/CodeGen/X86/avx512-schedule.ll | 10 +- llvm/test/CodeGen/X86/select-of-fp-constants.ll | 96 ++++++ llvm/test/CodeGen/X86/vec_fp_to_int-widen.ll | 305 +++++++++++++++++ llvm/test/CodeGen/X86/vec_fp_to_int.ll | 362 +++++++++++++++++++++ llvm/test/CodeGen/X86/vselect-zero.ll | 6 +- .../SCCP/ipsccp-ssa-copy-nested-conds.ll | 50 +++ llvm/test/tools/llvm-mca/ARM/memcpy-ldm-stm.s | 65 ++++ llvm/tools/llvm-mca/lib/InstrBuilder.cpp | 99 +++++- llvm/unittests/IR/MetadataTest.cpp | 8 +- 33 files changed, 1341 insertions(+), 301 deletions(-) create mode 100644 lld/test/ELF/Inputs/bad-reloc-target.test create mode 100644 lld/test/ELF/bad-reloc-target.test create mode 100644 lld/test/ELF/mergeable-errors.s delete mode 100644 llvm/test/CodeGen/X86/2009-03-07-FPConstSelect.ll create mode 100644 llvm/test/CodeGen/X86/select-of-fp-constants.ll create mode 100644 llvm/test/Transforms/SCCP/ipsccp-ssa-copy-nested-conds.ll create mode 100644 llvm/test/tools/llvm-mca/ARM/memcpy-ldm-stm.s