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-lts-defconfig in repository toolchain/ci/llvm-project.
from e294ece42d85 BPF: fix enum value 0 issue for __builtin_preserve_enum_value() adds 6baa5ce2e4b7 Fix typo, arvm7 -> armv7 adds 471a386a3d34 StackProtector: ensure protection does not interfere with [...] adds ac593de16cc5 [LoopReroll] Fix rerolling loop with extra instructions adds 225b775620c6 [PowerPC] Prevent argument promotion of types with size gr [...] adds c89d50033228 [InstCombine] add test for miscompile from select value eq [...] adds 4a12f51ad009 [InstCombine] fix potential miscompile in select value equ [...] adds 266c82f94da2 [InstSimplify] add test for vector select with operand rep [...] adds 8e2ff387d30d [InstSimplify] fix potential miscompile in select value eq [...] adds 372e6fbc8778 workflows: Use -g1 when compiling libraries for ABI checks adds 452500ebcde0 workflows: Use uncompressed abi dumps adds a1a197b54ec6 workflows: Fix tarball download for libclang-abi-tests adds 2db5d42193ab Remove extra test case added in 266c82f94da232d736f413c8d9 [...] adds f3e07c841e2f [NFC] Correctly assert the indents for printEnumValHelpStr. adds 24535af52ae1 [AArch64][GlobalISel] Fix incorrect codegen for <16 x s8> G_ASHR. adds 067c06dc8395 [SystemZ] Don't use libcall for 128 bit shifts. adds b89942c336a4 [Coverage] Fix branch coverage merging in FunctionCoverage [...] adds aa97726f6040 [SCCP] Avoid modifying AdditionalUsers while iterating over it
No new revisions were added by this update.
Summary of changes: .github/workflows/libclang-abi-tests.yml | 11 +- .github/workflows/llvm-tests.yml | 10 +- lldb/docs/man/lldb.rst | 4 +- lldb/tools/driver/Driver.cpp | 4 +- llvm/lib/Analysis/InstructionSimplify.cpp | 8 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 33 +- llvm/lib/CodeGen/StackProtector.cpp | 24 +- llvm/lib/Support/CommandLine.cpp | 2 +- .../AArch64/GISel/AArch64InstructionSelector.cpp | 2 +- llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp | 21 + llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h | 3 + llvm/lib/Target/SystemZ/SystemZISelLowering.cpp | 5 +- .../Transforms/InstCombine/InstCombineSelect.cpp | 5 +- llvm/lib/Transforms/Scalar/LoopRerollPass.cpp | 6 + llvm/lib/Transforms/Scalar/SCCP.cpp | 7 +- .../AArch64/GlobalISel/select-vector-shift.mir | 4 +- .../CodeGen/AArch64/stack-protector-musttail.ll | 66 ++ .../ARM/Windows/stack-protector-musttail.ll | 56 ++ llvm/test/CodeGen/PowerPC/arg_promotion.ll | 108 +++ llvm/test/CodeGen/SystemZ/shift-12.ll | 94 ++- llvm/test/CodeGen/X86/tailcc-ssp.ll | 26 + .../Transforms/InstCombine/select-binop-cmp.ll | 19 +- llvm/test/Transforms/InstSimplify/select.ll | 13 + llvm/test/Transforms/LoopReroll/extra_instr.ll | 268 +++++++ .../SCCP/pr49582-iterator-invalidation.ll | 854 +++++++++++++++++++++ llvm/test/tools/llvm-cov/branch-templates.cpp | 16 +- llvm/tools/llvm-cov/CoverageSummaryInfo.cpp | 6 +- llvm/tools/llvm-cov/CoverageSummaryInfo.h | 5 + 28 files changed, 1622 insertions(+), 58 deletions(-) create mode 100644 llvm/test/CodeGen/AArch64/stack-protector-musttail.ll create mode 100644 llvm/test/CodeGen/ARM/Windows/stack-protector-musttail.ll create mode 100644 llvm/test/CodeGen/PowerPC/arg_promotion.ll create mode 100644 llvm/test/CodeGen/X86/tailcc-ssp.ll create mode 100644 llvm/test/Transforms/LoopReroll/extra_instr.ll create mode 100644 llvm/test/Transforms/SCCP/pr49582-iterator-invalidation.ll