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-allnoconfig in repository toolchain/ci/llvm-project.
from dc10ff25f54b [AArch64][SME] Fix imm bug in mov vector to tile aliases adds f56129fe78d5 Fine grain control over some symbol visibility adds f17d60d62028 Inform pass manager when child loops are deleted adds 0c2f8599a9cc Workaround incorrect types when lowering fixed length gath [...] adds 718280c8a2d1 [AMDGPU][OpenMP] Use complex definitions from complex_cmath.h adds e3ec9058aae5 [MemCpyOpt] Fix a variety of scalable-type crashes adds b685e13d1130 [clan-format] detect function definitions more conservatively adds ffd90ed19988 [clang-format] handle trailing comments in function defini [...] adds 748f09fdd5d6 [clang-format] improve distinction of K&R function definit [...] adds 4ab7fe9228db [clang-format] Distinguish K&R C function definition and a [...] adds c8d8248488a3 [clang-format] Improve detection of parameter declarations [...] adds f53652203e49 scudo: Only add no-omit-frame-pointer flags when the compi [...] adds 9723fc15338e [OpenCL][Docs] Release 13 notes. adds bd8cc8543fdc [OpenCL][Docs] Update OpenCL 3.0 implementation status. adds 84a3be829686 [SimplifyCFG] performBranchToCommonDestFolding(): require [...] adds 1ff9aa2bfe19 [IR] Handle constant expressions in containsUndefinedElement() adds 77f24308fe78 [X86] Don't clobber EBX in stackprobes adds 4728892cd336 [LLD] Support compressed input sections on big-endian targets adds 1c198b3032e8 Revert [MC][ELF] Emit separate unique sections for differe [...] adds fbb8b41588be Revert "[AArch64][GlobalISel] Legalize bswap <2 x i16>" adds f1342c749ac0 [LLDB] AArch64 SVE restore SVE registers after expression adds 2aa67b31faf0 [clang-format] Restrict the special handling for K&R C to C/C++
No new revisions were added by this update.
Summary of changes: clang/docs/OpenCLSupport.rst | 72 +++---- clang/docs/ReleaseNotes.rst | 81 +++++++- clang/lib/Format/TokenAnnotator.cpp | 17 +- clang/lib/Format/UnwrappedLineParser.cpp | 41 ++-- clang/lib/Headers/openmp_wrappers/complex | 2 +- .../Headers/amdgcn-openmp-device-math-complex.cpp | 85 ++++++++ clang/unittests/Format/FormatTest.cpp | 53 ++++- compiler-rt/lib/scudo/standalone/CMakeLists.txt | 7 +- lld/ELF/InputSection.cpp | 47 ++--- lld/ELF/InputSection.h | 1 + lld/test/ELF/compressed-debug-input-err.s | 3 + lld/test/ELF/compressed-debug-input.s | 8 + .../Linux/NativeRegisterContextLinux_arm64.cpp | 144 +++++++++++--- .../Linux/NativeRegisterContextLinux_arm64.h | 2 +- .../Process/Utility/RegisterInfoPOSIX_arm64.h | 1 + .../rw_access_static_config/TestSVERegisters.py | 91 +++++---- .../rw_access_static_config/main.c | 19 +- llvm/include/llvm/Analysis/LazyCallGraph.h | 2 +- llvm/include/llvm/Analysis/LoopInfo.h | 2 +- llvm/include/llvm/Analysis/LoopNestAnalysis.h | 2 +- llvm/include/llvm/CodeGen/MachineFunction.h | 2 +- llvm/include/llvm/IR/Function.h | 3 +- llvm/include/llvm/IR/Module.h | 6 +- llvm/include/llvm/MC/MCContext.h | 16 +- .../llvm/Transforms/Scalar/MemCpyOptimizer.h | 2 +- llvm/lib/IR/Constants.cpp | 8 +- llvm/lib/MC/MCContext.cpp | 2 +- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 3 +- .../Target/AArch64/GISel/AArch64LegalizerInfo.cpp | 45 +---- .../Target/AArch64/GISel/AArch64LegalizerInfo.h | 2 - llvm/lib/Target/X86/X86FrameLowering.cpp | 8 +- llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp | 40 ++-- llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp | 43 ++-- llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 36 +++- .../CodeGen/AArch64/GlobalISel/legalize-bswap.mir | 39 ---- .../GlobalISel/legalizer-info-validation.mir | 4 +- .../AArch64/sve-fixed-length-masked-gather.ll | 85 +++++--- .../AArch64/sve-fixed-length-masked-scatter.ll | 76 ++++--- llvm/test/CodeGen/Mips/gpopt-explict-section.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-float16regloops.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-float32regloops.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-postinc-lsr.ll | 218 ++++++++++----------- .../CodeGen/X86/elf-unique-sections-by-flags.ll | 140 ------------- .../test/CodeGen/X86/explicit-section-mergeable.ll | 90 ++++----- llvm/test/CodeGen/X86/stack-clash-large.ll | 97 +++++---- .../Transforms/InstSimplify/ConstProp/vecreduce.ll | 9 + llvm/test/Transforms/LoopUnroll/peel-loop-inner.ll | 9 +- llvm/test/Transforms/MemCpyOpt/vscale-crashes.ll | 101 ++++++++++ .../PhaseOrdering/X86/vector-reductions-logical.ll | 90 +++++---- .../nontrivial-unswitch-markloopasdeleted.ll | 71 +++++++ .../SimplifyCFG/fold-branch-to-common-dest.ll | 95 ++++----- .../Orc/RTDyldObjectLinkingLayerTest.cpp | 31 ++- 52 files changed, 1263 insertions(+), 794 deletions(-) create mode 100644 clang/test/Headers/amdgcn-openmp-device-math-complex.cpp delete mode 100644 llvm/test/CodeGen/X86/elf-unique-sections-by-flags.ll create mode 100644 llvm/test/Transforms/MemCpyOpt/vscale-crashes.ll create mode 100644 llvm/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-mar [...]