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-next-defconfig in repository toolchain/ci/llvm-project.
from 6db6b56a5c8 [BPF] Add BTF Var and DataSec Support adds 3b0a6c69ee5 [DAGCombine] combineShuffleOfScalars - handle non-zero SCAL [...] adds 68b4673feaa CodeGen: Preserve packed attribute in constStructWithPadding. adds b18e314a7cb [RISCV] Fix RISCVAsmParser::ParseRegister and add tests adds 997947961a0 [RISCV][NFC] Factor out matchRegisterNameHelper in RISCVAsm [...] adds 6778b53e957 [ELF] De-virtualize findOrphanPos, excludeLibs and handleAR [...] new 6a6e808b699 [TargetLowering] improve the default expansion of uaddsat/usubsat new 9a4453592bf [DAGCombine] Fold (x & ~y) | y patterns new 738146ab333 [LLD][ELF] - Replace one of the tests with a YAML version. new 30673299d45 [ARM] Add some CBZ constant island tests. NFC new e0b48a80150 [ARM] Search backwards for CMP when combining into CBZ
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/lib/CodeGen/CGDecl.cpp | 2 +- clang/test/CodeGenCXX/auto-var-init.cpp | 6 + lld/ELF/Driver.cpp | 3 +- lld/ELF/Relocations.cpp | 3 +- lld/ELF/Writer.cpp | 3 +- lld/test/ELF/invalid/Inputs/data-encoding.a | Bin 156 -> 0 bytes lld/test/ELF/invalid/data-encoding.test | 17 ++ lld/test/ELF/invalid/invalid-elf.test | 4 - llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 26 +- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 11 + llvm/lib/Target/ARM/ARMConstantIslandPass.cpp | 94 ++++--- llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 32 ++- llvm/test/CodeGen/AArch64/sat-add.ll | 24 +- llvm/test/CodeGen/AArch64/uadd_sat_vec.ll | 21 +- .../unfold-masked-merge-scalar-variablemask.ll | 6 +- ...nfold-masked-merge-vector-variablemask-const.ll | 7 +- llvm/test/CodeGen/Thumb2/constant-islands-cbz.ll | 67 +++++ llvm/test/CodeGen/Thumb2/constant-islands-cbz.mir | 276 +++++++++++++++++++++ llvm/test/CodeGen/X86/oddshuffles.ll | 54 ++++ .../X86/unfold-masked-merge-scalar-variablemask.ll | 12 +- ...nfold-masked-merge-vector-variablemask-const.ll | 49 ++-- llvm/test/MC/RISCV/cfi-regs-invalid.s | 7 + llvm/test/MC/RISCV/cfi-regs-valid.s | 137 ++++++++++ 23 files changed, 723 insertions(+), 138 deletions(-) delete mode 100644 lld/test/ELF/invalid/Inputs/data-encoding.a create mode 100644 lld/test/ELF/invalid/data-encoding.test create mode 100644 llvm/test/CodeGen/Thumb2/constant-islands-cbz.ll create mode 100644 llvm/test/CodeGen/Thumb2/constant-islands-cbz.mir create mode 100644 llvm/test/MC/RISCV/cfi-regs-invalid.s create mode 100644 llvm/test/MC/RISCV/cfi-regs-valid.s