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-next-defconfig in repository toolchain/ci/llvm-project.
from f15b60b3a2a [ELF][PPC32] Support range extension thunks with addends adds 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 new b5cf8926518 [LLDB] Fix the handling of unnamed bit-fields when parsing DWARF new 23d93923900 Include <cstdlib> for std::abort() in clangd new f234f5c2b1e [msan] Instrument x86.pclmulqdq* intrinsics. new 256a0eaf23b [X86] Make `llc --help` output readable again new ef917463d9c [clangd] Show hower info for expressions new a6f550eae71 [clangd] Add a ruler after header in hover new 13553d51aa8 [clangd] Rearrange type, returntype and parameters in hover card new a27142b26a5 [clangd] Fix windows buildbots new 1f448807c2e [clangd] Extract string literals in macro arguments to unbr [...] new 7350a0429cc [clangd] Dont display `<unknown>` kinds in hover board new 1426bb44cc7 [clangd] Print underlying type for decltypes in hover new 53f39c77b2b [clangd] Drop returntype/type when hovering over type-ish names new 99464b7eb1d [clangd][Hover] Change arrow in return type back to →
The 13 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/docs/ReleaseNotes.rst | 3 + clang/lib/Parse/ParseExprCXX.cpp | 26 +--- clang/lib/Sema/SemaTemplate.cpp | 6 +- clang/lib/Sema/SemaTemplateInstantiateDecl.cpp | 7 +- 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 + lld/docs/ReleaseNotes.rst | 8 + .../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/docs/ReleaseNotes.rst | 18 ++- llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp | 14 +- .../Transforms/Instrumentation/MemorySanitizer.cpp | 43 ++++++ llvm/test/Instrumentation/MemorySanitizer/clmul.ll | 72 +++++++++ llvm/unittests/Support/Threading.cpp | 4 +- 26 files changed, 816 insertions(+), 263 deletions(-) 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/Instrumentation/MemorySanitizer/clmul.ll