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-defconfig in repository toolchain/ci/llvm-project.
from 0df13627c6a [CUDA] Fix order of memcpy arguments in __shfl_*(<64-bit type>). adds c21e178bf22 [Concepts] Transform constraints of non-template functions [...] adds 6f8ad14521e [ELF][PPC32] Support canonical PLT adds f15b60b3a2a [ELF][PPC32] Support range extension thunks with addends adds 27f93515c68 [docs][mips] 10.0 Release notes new 73a91477f70 [Concepts] Fix parsing of scope specifier in compound-requi [...]
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/docs/ReleaseNotes.rst | 3 + clang/include/clang/AST/ASTConcept.h | 6 +- clang/include/clang/Basic/DiagnosticSemaKinds.td | 2 + clang/include/clang/Sema/Sema.h | 13 +++- clang/lib/AST/ASTConcept.cpp | 4 +- clang/lib/Parse/ParseExprCXX.cpp | 26 ++----- clang/lib/Sema/SemaConcept.cpp | 58 ++++++++------- clang/lib/Sema/SemaExpr.cpp | 3 +- clang/lib/Sema/SemaExprCXX.cpp | 3 +- clang/lib/Sema/SemaOverload.cpp | 20 +++-- clang/lib/Sema/SemaTemplateInstantiate.cpp | 17 ++++- clang/test/Parser/cxx2a-abbreviated-templates.cpp | 19 +++++ clang/test/Parser/cxx2a-concepts-requires-expr.cpp | 24 +++--- .../Parser/cxx2a-placeholder-type-constraint.cpp | 37 +++++---- clang/test/SemaTemplate/cxx2a-constraint-exprs.cpp | 60 ++++++++++++--- lld/ELF/Arch/PPC.cpp | 37 +++++---- lld/ELF/Relocations.cpp | 29 ++++---- lld/ELF/SyntheticSections.cpp | 5 +- lld/ELF/SyntheticSections.h | 4 +- lld/ELF/Thunks.cpp | 45 ++++++++++- lld/docs/ReleaseNotes.rst | 8 ++ lld/test/ELF/ppc32-canonical-plt.s | 72 ++++++++++++++++++ lld/test/ELF/ppc32-long-thunk.s | 87 ++++++++++++++++++++++ llvm/docs/ReleaseNotes.rst | 18 ++++- 24 files changed, 457 insertions(+), 143 deletions(-) create mode 100644 clang/test/Parser/cxx2a-abbreviated-templates.cpp create mode 100644 lld/test/ELF/ppc32-canonical-plt.s create mode 100644 lld/test/ELF/ppc32-long-thunk.s