This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from bbe94cb02c [Tooling] Make standalone executor support user-provided vfs. new 6be26adfb3 [C++17] Disallow lambdas in template parameters (PR33696). new 894b021e2f Add tests for function conversions in conversion function te [...] new a58a89b042 [Hexagon] Diagnose intrinsics not supported by selected CPU/HVX
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: include/clang/Basic/DiagnosticSemaKinds.td | 10 +- include/clang/Sema/Sema.h | 64 +- lib/Basic/Targets/Hexagon.cpp | 4 + lib/Parse/ParseDecl.cpp | 4 +- lib/Parse/ParseDeclCXX.cpp | 2 +- lib/Parse/ParseStmt.cpp | 4 +- lib/Parse/ParseTemplate.cpp | 4 +- lib/Sema/Sema.cpp | 2 +- lib/Sema/SemaChecking.cpp | 794 ++++++++++++++++++++- lib/Sema/SemaExpr.cpp | 43 +- lib/Sema/SemaExprCXX.cpp | 10 +- lib/Sema/SemaTemplateDeduction.cpp | 3 + lib/Sema/TreeTransform.h | 6 +- .../expr.prim.lambda/p2-template-parameter.cpp | 7 + .../temp.deduct/temp.deduct.conv/p4.cpp | 17 + test/Sema/builtins-hexagon-v55.c | 17 + test/Sema/builtins-hexagon-v60.c | 16 + test/Sema/builtins-hexagon-v62.c | 15 + test/Sema/builtins-hexagon-v65.c | 15 + test/Sema/builtins-hvx-none.c | 26 + test/Sema/builtins-hvx-v60.c | 25 + test/Sema/builtins-hvx-v62.c | 24 + test/Sema/builtins-hvx-v65.c | 23 + 23 files changed, 1072 insertions(+), 63 deletions(-) create mode 100644 test/CXX/expr/expr.prim/expr.prim.lambda/p2-template-parameter.cpp create mode 100644 test/Sema/builtins-hexagon-v55.c create mode 100644 test/Sema/builtins-hexagon-v60.c create mode 100644 test/Sema/builtins-hexagon-v62.c create mode 100644 test/Sema/builtins-hexagon-v65.c create mode 100644 test/Sema/builtins-hvx-none.c create mode 100644 test/Sema/builtins-hvx-v60.c create mode 100644 test/Sema/builtins-hvx-v62.c create mode 100644 test/Sema/builtins-hvx-v65.c