This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/llvm-master-arm-spec2k6-O3 in repository toolchain/ci/llvm-project.
from 099eca832e7 [LoopPred] Handle a subset of NE comparison based latches adds 2258ecc2aae [COFF, ARM64] Fix location of ARM64 CodeView test adds 19afdf74bb9 [LoopPred] Eliminate a redundant/confusing cover function [NFC] adds 4e875464df0 Inline variable into assert to fix unused variable warning. adds b380846a125 [RuntimeDyld] fix too-small-bitmask error adds 48fdb61766a [X86] Make the X86FoldTablesEmitter functional again. Fix t [...] adds c288a19bb71 [X86] Add AVX512BF16 and AVX512VP2INTERSECT instructions to [...] adds b3498346fd2 [llvm-objcopy] test commit adds 038e3b9f574 Extend the DWARFExpression address handling to support 16-b [...] adds 2b1d799a595 [IndVarSimplify] Add additional PR33181 tests; NFC adds 46d4dba6e64 [IndVarSimplify] Fixup nowrap flags during LFTR (PR31181) adds 73f05841992 msabi: Fix exponential mangling time for certain pathologic [...] adds bcc0bd7e2a1 [ELF][test] Reorganize some AArch64 tests adds 1aaa23c0fc5 [NFC][Codegen] shift-amount-mod.ll: drop innermost operation
No new revisions were added by this update.
Summary of changes: clang/lib/AST/MicrosoftMangle.cpp | 93 +++--- .../mangle-ms-back-references-pr13207.cpp | 41 +++ lld/test/ELF/aarch64-fpic-got.s | 16 +- lld/test/ELF/aarch64-gnu-ifunc-address-pie.s | 49 --- lld/test/ELF/aarch64-gnu-ifunc-address.s | 8 +- lld/test/ELF/aarch64-gnu-ifunc-nonpreemptable.s | 72 +++++ lld/test/ELF/aarch64-gnu-ifunc3.s | 57 ---- lld/test/ELF/aarch64-got-reloc.s | 30 -- lld/test/ELF/aarch64-got-weak-undef.s | 18 ++ lld/test/ELF/aarch64-got.s | 18 -- .../ELF/{aarch64-copy2.s => aarch64-nopic-plt.s} | 0 lld/test/ELF/aarch64-tls-gdie.s | 12 +- lld/test/ELF/aarch64-tls-gdle.s | 18 +- lld/test/ELF/aarch64-tls-ie.s | 66 ++--- lld/test/ELF/aarch64-tls-iele.s | 16 +- lld/test/ELF/aarch64-tls-pie.s | 28 -- lld/test/ELF/aarch64-tlsld-ldst.s | 24 +- lld/test/ELF/got-aarch64.s | 40 --- .../include/llvm/DebugInfo/DWARF/DWARFExpression.h | 2 +- llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp | 12 +- .../ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 2 +- llvm/lib/Target/X86/X86InstrFoldTables.cpp | 39 ++- llvm/lib/Transforms/Scalar/IndVarSimplify.cpp | 21 ++ llvm/lib/Transforms/Scalar/LoopPredication.cpp | 45 +-- llvm/test/CodeGen/AArch64/sink-addsub-of-const.ll | 266 +++++++---------- llvm/test/CodeGen/X86/sink-addsub-of-const.ll | 330 ++++++++------------- llvm/test/CodeGen/X86/stack-folding-avx512bf16.ll | 297 +++++++++++++++++++ .../X86/stack-folding-avx512vp2intersect.ll | 88 ++++++ .../arm64-register-variables.ll} | 2 +- llvm/test/DebugInfo/COFF/AArch64/lit.local.cfg | 3 + llvm/test/MC/AVR/dwarf-asm-no-code.s | 19 ++ .../IndVarSimplify/{pr31181.ll => lftr-pr31181.ll} | 104 ++++++- llvm/tools/llvm-objcopy/llvm-objcopy.cpp | 2 +- llvm/utils/TableGen/X86FoldTablesEmitter.cpp | 61 ++-- 34 files changed, 1137 insertions(+), 762 deletions(-) delete mode 100644 lld/test/ELF/aarch64-gnu-ifunc-address-pie.s create mode 100644 lld/test/ELF/aarch64-gnu-ifunc-nonpreemptable.s delete mode 100644 lld/test/ELF/aarch64-gnu-ifunc3.s delete mode 100644 lld/test/ELF/aarch64-got-reloc.s create mode 100644 lld/test/ELF/aarch64-got-weak-undef.s delete mode 100644 lld/test/ELF/aarch64-got.s rename lld/test/ELF/{aarch64-copy2.s => aarch64-nopic-plt.s} (100%) delete mode 100644 lld/test/ELF/aarch64-tls-pie.s delete mode 100644 lld/test/ELF/got-aarch64.s create mode 100644 llvm/test/CodeGen/X86/stack-folding-avx512bf16.ll create mode 100644 llvm/test/CodeGen/X86/stack-folding-avx512vp2intersect.ll rename llvm/test/DebugInfo/COFF/{register-variables-arm64.ll => AArch64/arm64-regi [...] create mode 100644 llvm/test/DebugInfo/COFF/AArch64/lit.local.cfg create mode 100644 llvm/test/MC/AVR/dwarf-asm-no-code.s rename llvm/test/Transforms/IndVarSimplify/{pr31181.ll => lftr-pr31181.ll} (70%)