This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 04cbc70306 Add GCC's noexcept-type alias for c++1z-compat-mangling new c874b4b3b1 [OPENMP] Initial support for 'task_reduction' clause.
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: include/clang/AST/OpenMPClause.h | 211 ++++++++++++++++++ include/clang/AST/RecursiveASTVisitor.h | 22 ++ include/clang/AST/StmtOpenMP.h | 34 +-- include/clang/Basic/DiagnosticSemaKinds.td | 6 +- include/clang/Basic/OpenMPKinds.def | 8 + include/clang/Sema/Sema.h | 10 +- lib/AST/OpenMPClause.cpp | 57 +++++ lib/AST/StmtOpenMP.cpp | 21 +- lib/AST/StmtPrinter.cpp | 25 ++- lib/AST/StmtProfile.cpp | 24 ++ lib/Basic/OpenMPKinds.cpp | 16 +- lib/CodeGen/CGStmtOpenMP.cpp | 1 + lib/Parse/ParseOpenMP.cpp | 23 +- lib/Sema/SemaOpenMP.cpp | 72 ++++-- lib/Sema/TreeTransform.h | 60 +++++ lib/Serialization/ASTReaderStmt.cpp | 42 +++- lib/Serialization/ASTWriterStmt.cpp | 20 ++ test/OpenMP/taskgroup_ast_print.cpp | 60 ++++- test/OpenMP/taskgroup_messages.cpp | 2 + test/OpenMP/taskgroup_task_reduction_messages.cpp | 258 ++++++++++++++++++++++ tools/libclang/CIndex.cpp | 17 ++ 21 files changed, 929 insertions(+), 60 deletions(-) create mode 100644 test/OpenMP/taskgroup_task_reduction_messages.cpp