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-arm-next-allnoconfig in repository toolchain/ci/llvm-project.
from 27f93515c68 [docs][mips] 10.0 Release notes adds 73a91477f70 [Concepts] Fix parsing of scope specifier in compound-requi [...] adds b07b82777b9 [Concepts] Add missing null check to transformConstructor adds b39efdbcfcb [Concepts] Fix incorrect TemplateArgs for introduction of l [...] adds 2c9cb89d0d0 [Support] Fix race in threading test, found by TSan adds b5cf8926518 [LLDB] Fix the handling of unnamed bit-fields when parsing DWARF adds 23d93923900 Include <cstdlib> for std::abort() in clangd adds f234f5c2b1e [msan] Instrument x86.pclmulqdq* intrinsics. adds 256a0eaf23b [X86] Make `llc --help` output readable again adds ef917463d9c [clangd] Show hower info for expressions adds a6f550eae71 [clangd] Add a ruler after header in hover adds 13553d51aa8 [clangd] Rearrange type, returntype and parameters in hover card adds a27142b26a5 [clangd] Fix windows buildbots adds 1f448807c2e [clangd] Extract string literals in macro arguments to unbr [...] adds 7350a0429cc [clangd] Dont display `<unknown>` kinds in hover board adds 1426bb44cc7 [clangd] Print underlying type for decltypes in hover adds 53f39c77b2b [clangd] Drop returntype/type when hovering over type-ish names adds 99464b7eb1d [clangd][Hover] Change arrow in return type back to → new 01fd650ba3d [RISCV] Pass target-abi via module flag metadata new 7c5784746cf [RISCV] Check the target-abi module flag matches the option new 4d342b7d8e9 Revert "[RISCV] Support ABI checking with per function targ [...] new 72882ca30d8 [RISCV] Support ABI checking with per function target-features
The 4 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-tools-extra/clangd/FormattedString.cpp | 49 +++++- clang-tools-extra/clangd/FormattedString.h | 5 +- clang-tools-extra/clangd/Hover.cpp | 153 +++++++++++++------ clang-tools-extra/clangd/Shutdown.cpp | 1 + clang-tools-extra/clangd/test/hover.test | 2 +- .../clangd/unittests/FormattedStringTests.cpp | 34 ++++- clang-tools-extra/clangd/unittests/HoverTests.cpp | 160 +++++++++++++++++++- clang/lib/CodeGen/CodeGenModule.cpp | 7 + clang/lib/Parse/ParseExprCXX.cpp | 26 +--- clang/lib/Sema/SemaTemplate.cpp | 6 +- clang/lib/Sema/SemaTemplateInstantiateDecl.cpp | 7 +- clang/test/CodeGen/riscv-metadata.c | 14 ++ clang/test/Parser/cxx2a-abbreviated-templates.cpp | 19 +++ clang/test/Parser/cxx2a-concepts-requires-expr.cpp | 24 +-- .../Parser/cxx2a-placeholder-type-constraint.cpp | 37 +++-- .../SemaTemplate/instantiate-requires-clause.cpp | 7 + .../cpp/bitfields}/Makefile | 0 .../test/lang/cpp/bitfields/TestCppBitfields.py | 105 +++++++++++++ .../lldbsuite/test/lang/cpp/bitfields/main.cpp | 81 ++++++++++ .../SymbolFile/DWARF/DWARFASTParserClang.cpp | 166 +++++++-------------- .../Plugins/SymbolFile/DWARF/DWARFASTParserClang.h | 35 ++--- llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 5 +- llvm/lib/Target/RISCV/RISCVTargetMachine.cpp | 14 +- llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp | 24 +-- llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h | 2 + llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp | 14 +- .../Transforms/Instrumentation/MemorySanitizer.cpp | 43 ++++++ llvm/test/CodeGen/RISCV/module-target-abi.ll | 24 +++ llvm/test/CodeGen/RISCV/module-target-abi2.ll | 27 ++++ llvm/test/Instrumentation/MemorySanitizer/clmul.ll | 72 +++++++++ llvm/unittests/Support/Threading.cpp | 4 +- 31 files changed, 892 insertions(+), 275 deletions(-) create mode 100644 clang/test/CodeGen/riscv-metadata.c create mode 100644 clang/test/Parser/cxx2a-abbreviated-templates.cpp copy lldb/packages/Python/lldbsuite/test/{api/check_public_api_headers => lang/cpp [...] create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/TestCppB [...] create mode 100644 lldb/packages/Python/lldbsuite/test/lang/cpp/bitfields/main.cpp create mode 100644 llvm/test/CodeGen/RISCV/module-target-abi.ll create mode 100644 llvm/test/CodeGen/RISCV/module-target-abi2.ll create mode 100644 llvm/test/Instrumentation/MemorySanitizer/clmul.ll