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-aarch64-next-defconfig in repository toolchain/ci/llvm-project.
from b5e5bc760e7 Variable auto-init: split out small arrays adds 988332a54a7 Add ASAN llvm build directory variants to get_llvm_bin_dirs(). adds 1488ee4bd54 [ObjC] Emit a boxed expression as a compile-time constant i [...] adds ed982292862 [Bitcode] Fix bitcode compatibility issue with clang.arc.us [...] adds a453455cee6 Fix test case committed in r355662. adds 28302c66d25 [runtimes] Move libunwind, libc++abi and libc++ to lib/ and [...] adds bd83f7097c5 [Clang] Include the test directory ommited in r355665 adds 4505c99e722 [X86] Improve the type checking in isLegalMaskedLoad and is [...] adds e7eb27a9a0e [clang][Index] Mark references from Constructors and Destru [...] adds 65944ab50d6 [clangd] Adjust compile commands to be applicable for tooling adds 07ddb9d91ff Add another test for r354937 that came up in PR40890 adds 1a98dc18404 [AMDGPU] V_CVT_F32_UBYTE{0,1,2,3} are full rate instructions adds 8e16d73346f [SelectionDAG] Allow the user to specify a memeq function.
No new revisions were added by this update.
Summary of changes: .../clangd/GlobalCompilationDatabase.cpp | 16 +- .../clangd/GlobalCompilationDatabaseTests.cpp | 49 ++- clang/include/clang/AST/ExprObjC.h | 6 + clang/include/clang/Basic/DiagnosticGroups.td | 1 + clang/include/clang/Basic/DiagnosticSemaKinds.td | 3 + clang/include/clang/Index/IndexSymbol.h | 6 +- clang/lib/AST/ExprConstant.cpp | 4 + clang/lib/CodeGen/CGExprConstant.cpp | 19 +- clang/lib/CodeGen/CGObjC.cpp | 8 +- clang/lib/Driver/ToolChain.cpp | 5 + clang/lib/Driver/ToolChains/Fuchsia.cpp | 4 +- clang/lib/Driver/ToolChains/Linux.cpp | 1 - clang/lib/Index/IndexDecl.cpp | 6 +- clang/lib/Index/IndexSymbol.cpp | 2 + clang/lib/Index/IndexingContext.cpp | 1 + clang/lib/Sema/SemaExprObjC.cpp | 25 ++ clang/test/CodeGen/x86-64-inline-asm.c | 2 + clang/test/CodeGenObjC/boxing.m | 10 + .../usr/lib/x86_64-linux-gnu}/.keep | 0 clang/test/Driver/linux-per-target-runtime-dir.c | 4 +- clang/test/Index/Core/index-source.cpp | 16 +- clang/test/SemaObjC/boxing-illegal.m | 15 +- clang/test/SemaObjC/objc-literal-sig.m | 6 +- .../SemaObjC/transfer-boxed-string-nullability.m | 18 +- clang/test/SemaObjCXX/literals.mm | 8 + clang/unittests/Index/IndexTests.cpp | 32 +- libcxx/CMakeLists.txt | 20 +- libcxx/lib/CMakeLists.txt | 6 +- libcxxabi/CMakeLists.txt | 13 +- libcxxabi/src/CMakeLists.txt | 4 +- libunwind/CMakeLists.txt | 13 +- libunwind/src/CMakeLists.txt | 4 +- lldb/packages/Python/lldbsuite/test/dotest.py | 3 + llvm/docs/ReleaseNotes.rst | 5 + llvm/include/llvm/Transforms/Utils/BuildLibCalls.h | 4 + llvm/lib/Analysis/TargetLibraryInfo.cpp | 13 + llvm/lib/IR/AutoUpgrade.cpp | 14 + llvm/lib/Target/AMDGPU/VOP1Instructions.td | 7 +- llvm/lib/Target/X86/X86TargetTransformInfo.cpp | 42 ++- llvm/lib/Transforms/Utils/BuildLibCalls.cpp | 31 +- llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp | 41 ++- llvm/runtimes/CMakeLists.txt | 9 +- llvm/test/Bitcode/upgrade-clang-arc-use.ll | 14 + llvm/test/Bitcode/upgrade-clang-arc-use.ll.bc | Bin 0 -> 1296 bytes llvm/test/CodeGen/AMDGPU/cvt_f32_ubyte.ll | 4 +- llvm/test/CodeGen/AMDGPU/udivrem24.ll | 8 +- llvm/test/CodeGen/X86/avx512-masked_memop-16-8.ll | 401 +++++++++++++++++++++ llvm/test/CodeGen/X86/memcmp.ll | 67 ++++ .../test/Transforms/InferFunctionAttrs/annotate.ll | 9 +- llvm/test/Transforms/InstCombine/memcmp-1.ll | 21 +- llvm/test/Transforms/InstCombine/strcmp-1.ll | 24 +- 51 files changed, 930 insertions(+), 114 deletions(-) copy clang/test/Driver/Inputs/{CUDA-macosx/usr/local/cuda/bin => basic_linux_libcx [...] create mode 100644 llvm/test/Bitcode/upgrade-clang-arc-use.ll create mode 100644 llvm/test/Bitcode/upgrade-clang-arc-use.ll.bc