This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 283f308bdb [OpenCL] Change type of block pointer for OpenCL new 238a43704c [OpenMP 5.0] Parsing/sema support for map clause with mapper [...]
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/DeclOpenMP.h | 2 +- include/clang/AST/OpenMPClause.h | 552 ++++++++++++--------- include/clang/Basic/DiagnosticParseKinds.td | 2 +- include/clang/Basic/DiagnosticSemaKinds.td | 2 + include/clang/Basic/OpenMPKinds.def | 1 + include/clang/Parse/Parser.h | 8 +- include/clang/Sema/Sema.h | 35 +- lib/AST/OpenMPClause.cpp | 218 ++++---- lib/Parse/ParseOpenMP.cpp | 83 +++- lib/Sema/SemaOpenMP.cpp | 331 ++++++++---- lib/Sema/SemaTemplateInstantiateDecl.cpp | 16 +- lib/Sema/TreeTransform.h | 106 ++-- lib/Serialization/ASTReader.cpp | 70 +-- lib/Serialization/ASTWriter.cpp | 4 + test/OpenMP/declare_mapper_ast_print.c | 8 + test/OpenMP/declare_mapper_ast_print.cpp | 41 +- test/OpenMP/declare_mapper_codegen.cpp | 66 +++ test/OpenMP/declare_mapper_messages.c | 15 + test/OpenMP/declare_mapper_messages.cpp | 23 + test/OpenMP/target_map_messages.cpp | 16 +- test/OpenMP/target_parallel_for_map_messages.cpp | 4 +- .../target_parallel_for_simd_map_messages.cpp | 4 +- test/OpenMP/target_parallel_map_messages.cpp | 4 +- test/OpenMP/target_simd_map_messages.cpp | 4 +- .../target_teams_distribute_map_messages.cpp | 4 +- ..._teams_distribute_parallel_for_map_messages.cpp | 4 +- ...s_distribute_parallel_for_simd_map_messages.cpp | 4 +- .../target_teams_distribute_simd_map_messages.cpp | 4 +- test/OpenMP/target_teams_map_messages.cpp | 4 +- 29 files changed, 1044 insertions(+), 591 deletions(-) create mode 100644 test/OpenMP/declare_mapper_codegen.cpp