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-release-aarch64-next-defconfig in repository toolchain/ci/llvm-project.
from 4f53867ec27 Drop git version suffix adds f87a0929c6b Add lowering of STRICT_FSETCC and STRICT_FSETCCS adds a97c77ad175 [FPEnv][AArch64] Add lowering and instruction selection for [...] adds fca6c5e5dbf [FPEnv][AArch64] Add lowering and instruction selection for [...] adds 19f4aa2d0ad [FPEnv][ARM] Add lowering of STRICT_FSETCC and STRICT_FSETCCS adds cff417cffd6 [FPEnv][AArch64] Add lowering of f128 STRICT_FSETCC adds cbac41966b8 [ARM] Fix infinite loop when lowering STRICT_FP_EXTEND adds b5d9a7e72fa [AArch64][FPenv] Update chain of int to fp conversion adds f636e9feb9f [FPEnv][ARM] Don't call mutateStrictFPToFP when lowering adds 8dbe13ff509 [libcxx] Support Python 3.8 in the test suite adds cd5006d09d0 PR44890: Inherit explicitly-specified template arguments in [...] adds 3dee8be1c3f llvm: Use quotes around MSVC_DIA_SDK_DIR CMake variable adds 8de07c31c1a Fix a -Wbitwise-conditional-parentheses warning in _LIBUNWI [...] adds 2db1f7f59a2 Restore functionality of --sysroot on FreeBSD after b18cb9c47 adds be45a5a4092 [CodeGen][Tests] Fix b3cf70427eb1e97d9b89ba6e9298c280c8a32c74 adds a0fe9e05176 [SLPVectorizer] Do not assume extracelement idx is a ConstantInt. new 222de784df4 [X86CmovConversion] Make heuristic for optimized cmov depth [...] new d5f8656a68c [clangd] Make output order of allTargetDecls deterministic new 7751f0c1915 Add testing for DW_OP_piece and fix a bug with small Scalar [...] new cab81521b5a Fix a buffer-size bug when the first DW_OP_piece is undefined new 5f76fcc9796 Fix unused function warning (PR44808)
The 5 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-tools-extra/clangd/FindTarget.cpp | 81 +- clang/include/clang/Sema/TemplateDeduction.h | 7 + clang/lib/Driver/ToolChains/FreeBSD.cpp | 9 +- clang/lib/Driver/ToolChains/FreeBSD.h | 12 +- clang/lib/Sema/SemaTemplateDeduction.cpp | 2 +- clang/test/SemaTemplate/deduction.cpp | 17 + libcxx/utils/libcxx/test/target_info.py | 14 +- libunwind/src/UnwindCursor.hpp | 5 +- lldb/source/Expression/DWARFExpression.cpp | 22 +- lldb/unittests/Expression/DWARFExpressionTest.cpp | 28 +- llvm/cmake/config-ix.cmake | 2 +- .../CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp | 10 +- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 139 +- llvm/lib/Target/AArch64/AArch64ISelLowering.h | 4 + llvm/lib/Target/AArch64/AArch64InstrFormats.td | 6 +- llvm/lib/Target/AArch64/AArch64InstrInfo.td | 25 +- llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp | 12 +- llvm/lib/Target/ARM/ARMISelLowering.cpp | 85 +- llvm/lib/Target/ARM/ARMISelLowering.h | 5 +- llvm/lib/Target/ARM/ARMInstrVFP.td | 14 +- llvm/lib/Target/X86/X86CmovConversion.cpp | 13 +- llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp | 11 +- llvm/test/CodeGen/AArch64/fp-intrinsics.ll | 1568 ++++++++++++++++++++ .../AArch64/fpconv-vector-op-scalarize-strict.ll | 22 +- llvm/test/CodeGen/AArch64/strict-fp-int-promote.ll | 67 + llvm/test/CodeGen/ARM/fp-intrinsics.ll | 562 ++++++- .../CodeGenPrepare}/PowerPC/lit.local.cfg | 0 .../test/Transforms/SLPVectorizer/X86/lookahead.ll | 150 ++ 28 files changed, 2721 insertions(+), 171 deletions(-) create mode 100644 llvm/test/CodeGen/AArch64/fp-intrinsics.ll create mode 100644 llvm/test/CodeGen/AArch64/strict-fp-int-promote.ll copy llvm/test/{Analysis/CostModel => Transforms/CodeGenPrepare}/PowerPC/lit.local [...]