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-mainline-allmodconfig in repository toolchain/ci/llvm-project.
from acdda1344a0 [lldb/Lua] Add missing boiler plate to ScriptInterpreter. adds 68cb7d85423 [lldb/Commands] Honor the scripting language passed (2/2) adds ba0eb7b66fd [lldb/ScriptInterpreter] Fix stale/bogus error messages adds 0792ef72564 [Driver] Verify -mrecord-mcount in Driver, instead of CodeG [...] adds d0bfb3c5830 DebugInfo: Remove out of date comment adds 527b0f8c744 [Driver] Allow -mnop-mcount for SystemZ and -mfentry for X8 [...] adds 9a3fab97468 [LLDB] Fix building without SWIG adds d3f5769d5e9 [Concepts] Constrained partial specializations and function [...] adds b6eba312929 [Sema] SequenceChecker: Add some comments + related small NFCs new 8a571538dff [Sema] SequenceChecker: Fix handling of operator ||, && and ?: new 7394c15178e [Sema] SequenceChecker: C++17 sequencing rules for built-in [...] new 218601ada14 [lldb] Remove unused CompilerDeclContext::IsStructUnionOrClass
The 3 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/include/clang/AST/DeclTemplate.h | 29 +- clang/include/clang/Basic/DiagnosticSemaKinds.td | 15 +- clang/include/clang/Sema/Sema.h | 60 ++- clang/lib/AST/ASTImporter.cpp | 34 +- clang/lib/AST/DeclTemplate.cpp | 79 +++- clang/lib/CodeGen/CodeGenFunction.cpp | 8 - clang/lib/Driver/ToolChains/Clang.cpp | 34 +- clang/lib/Frontend/FrontendActions.cpp | 4 + clang/lib/Sema/SemaChecking.cpp | 428 +++++++++++++++------ clang/lib/Sema/SemaConcept.cpp | 360 +++++++++++++++++ clang/lib/Sema/SemaTemplate.cpp | 30 +- clang/lib/Sema/SemaTemplateDeduction.cpp | 231 +++++++++-- clang/lib/Sema/SemaTemplateInstantiate.cpp | 42 ++ clang/lib/Sema/SemaTemplateInstantiateDecl.cpp | 5 +- clang/lib/Serialization/ASTReaderDecl.cpp | 10 +- clang/lib/Serialization/ASTWriterDecl.cpp | 8 +- clang/test/CXX/drs/dr2xx.cpp | 10 +- clang/test/CXX/drs/dr6xx.cpp | 5 +- clang/test/CXX/expr/expr.prim/expr.prim.id/p3.cpp | 15 +- .../CXX/temp/temp.constr/temp.constr.normal/p1.cpp | 18 + .../class-template-partial-specializations.cpp | 50 +++ .../temp.constr.order/function-templates.cpp | 82 ++++ .../var-template-partial-specializations.cpp | 53 +++ clang/test/CodeGen/mnop-mcount.c | 3 - clang/test/CodeGen/mrecord-mcount.c | 3 - clang/test/Driver/mcount.c | 12 + clang/test/Driver/mfentry.c | 9 + clang/test/Sema/warn-unsequenced.c | 15 +- clang/test/SemaCXX/warn-unsequenced.cpp | 145 ++++++- lldb/CMakeLists.txt | 4 +- lldb/include/lldb/Symbol/ClangASTContext.h | 2 - lldb/include/lldb/Symbol/CompilerDeclContext.h | 2 - lldb/include/lldb/Symbol/TypeSystem.h | 2 - .../Commands/CommandObjectWatchpointCommand.cpp | 40 +- lldb/source/Interpreter/ScriptInterpreter.cpp | 4 +- lldb/source/Symbol/ClangASTContext.cpp | 7 - lldb/source/Symbol/CompilerDeclContext.cpp | 7 - .../ScriptInterpreter/Lua/breakpoint_callback.test | 5 + .../ScriptInterpreter/Lua/watchpoint_callback.test | 8 + llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 4 - 40 files changed, 1559 insertions(+), 323 deletions(-) mode change 100644 => 100755 clang/include/clang/AST/DeclTemplate.h mode change 100644 => 100755 clang/include/clang/Sema/Sema.h mode change 100644 => 100755 clang/lib/AST/DeclTemplate.cpp mode change 100644 => 100755 clang/lib/Sema/SemaConcept.cpp mode change 100644 => 100755 clang/lib/Sema/SemaTemplate.cpp mode change 100644 => 100755 clang/lib/Sema/SemaTemplateInstantiateDecl.cpp create mode 100644 clang/test/CXX/temp/temp.constr/temp.constr.normal/p1.cpp create mode 100644 clang/test/CXX/temp/temp.constr/temp.constr.order/class-templat [...] create mode 100644 clang/test/CXX/temp/temp.constr/temp.constr.order/function-temp [...] create mode 100644 clang/test/CXX/temp/temp.constr/temp.constr.order/var-template- [...] create mode 100644 clang/test/Driver/mcount.c create mode 100644 clang/test/Driver/mfentry.c create mode 100644 lldb/test/Shell/ScriptInterpreter/Lua/breakpoint_callback.test create mode 100644 lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test