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-stable-allyesconfig in repository toolchain/ci/llvm-project.
from 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 → adds 01fd650ba3d [RISCV] Pass target-abi via module flag metadata adds 7c5784746cf [RISCV] Check the target-abi module flag matches the option adds 4d342b7d8e9 Revert "[RISCV] Support ABI checking with per function targ [...] adds 72882ca30d8 [RISCV] Support ABI checking with per function target-features adds c23212a438f [IR] Keep a double break between functions when printing a module adds 87c7863c3ec Reland "[StackColoring] Remap PseudoSourceValue frame indic [...] new 6472fec9a69 [clangd][Hover] Handle uninstantiated templates
The 1 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 | 180 ++++++++++++++------- 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 | 179 +++++++++++++++++++- clang/lib/CodeGen/CodeGenModule.cpp | 7 + clang/test/CodeGen/riscv-metadata.c | 14 ++ .../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/CodeGen/StackColoring.cpp | 16 +- llvm/lib/IR/AsmWriter.cpp | 4 +- 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/Feature/undefined.ll | 13 ++ llvm/test/Instrumentation/MemorySanitizer/clmul.ll | 72 +++++++++ llvm/unittests/Support/Threading.cpp | 4 +- 27 files changed, 878 insertions(+), 242 deletions(-) create mode 100644 clang/test/CodeGen/riscv-metadata.c 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