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_apm/llvm-release-arm-spec2k6-Os in repository toolchain/ci/llvm-project.
from 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++ adds 1916a1c578f8 [VPlan] Fix crash caused by not updating all users properly. adds f6b09e394a5f [openmp] Apply code change from D109500 adds 1f27fe612876 -Wunused-but-set-parameter/-Wunused-but-set-variable Add t [...] adds 635b7871de93 [clang-repl] Install clang-repl adds 89f2c0c63c22 [clang] disable implicit moves when not in CPlusPLus adds d811546f803c [compiler-rt] Move -fno-omit-frame-pointer check to common [...] adds 8d78ac26f475 [OpenMP]Fix PR51349: Remove AlwaysInline for if regions. adds 6aa054242d60 [LLD] Add required `ppc` target to the test cases. NFC adds 6a5ccb2ec438 [compiler-rt] Implement __clear_cache() on OpenBSD/riscv64 adds 08642a395f23 Fix syntax error in Clang release notes adds dda88bfc06b5 [clang][scan-build] Use cc/c++ instead of gcc/g++ on OpenBSD. adds b96ee8f581f6 [X86] combineX86ShuffleChain - ensure we only peek through [...] adds 5b95eb0b442e [debuginfo-test][cross-project-tests] Release note for new [...] adds 80f974e40f81 [AArch64][GlobalISel] Use ZExtValue for zext(xor) when inv [...] adds d0f0b5b99262 Thread safety analysis: Warn when demoting locks on back edges
No new revisions were added by this update.
Summary of changes: clang/docs/ReleaseNotes.rst | 5 + clang/lib/Analysis/ThreadSafety.cpp | 31 +++-- clang/lib/CodeGen/CGOpenMPRuntime.cpp | 3 +- clang/lib/Format/TokenAnnotator.cpp | 15 ++- clang/lib/Sema/SemaStmt.cpp | 3 +- clang/test/AST/nrvo.c | 29 +++++ clang/test/Analysis/blocks-nrvo.c | 14 ++ clang/test/OpenMP/parallel_if_codegen_PR51349.cpp | 38 ++++++ clang/test/SemaCXX/warn-thread-safety-analysis.cpp | 42 ++++++ clang/tools/clang-repl/CMakeLists.txt | 2 +- clang/tools/scan-build/libexec/ccc-analyzer | 3 + clang/unittests/Format/FormatTest.cpp | 6 + compiler-rt/cmake/builtin-config-ix.cmake | 1 - compiler-rt/cmake/config-ix.cmake | 1 + compiler-rt/lib/builtins/clear_cache.c | 9 +- lld/test/ELF/compressed-debug-input-err.s | 2 +- lld/test/ELF/compressed-debug-input.s | 2 +- .../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/docs/ReleaseNotes.rst | 9 ++ .../AArch64/GISel/AArch64InstructionSelector.cpp | 12 +- .../Target/AArch64/GISel/AArch64LegalizerInfo.cpp | 45 +------ .../Target/AArch64/GISel/AArch64LegalizerInfo.h | 2 - llvm/lib/Target/X86/X86ISelLowering.cpp | 2 +- llvm/lib/Transforms/IPO/OpenMPOpt.cpp | 23 +++- llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp | 7 +- .../CodeGen/AArch64/GlobalISel/legalize-bswap.mir | 39 ------ .../GlobalISel/legalizer-info-validation.mir | 4 +- .../AArch64/GlobalISel/opt-fold-xor-tbz-tbnz.mir | 32 +++++ llvm/test/CodeGen/X86/vector-reduce-mul.ll | 58 +++++++++ .../LoopVectorize/vplan-sink-scalars-and-merge.ll | 66 ++++++++++ 34 files changed, 574 insertions(+), 188 deletions(-) create mode 100644 clang/test/AST/nrvo.c create mode 100644 clang/test/Analysis/blocks-nrvo.c create mode 100644 clang/test/OpenMP/parallel_if_codegen_PR51349.cpp