This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d6865a1 [OpenMP] Parsing and sema support for target update directive new 0a889a0 [OpenMP] Parsing and sema support for the to 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 | 103 +++++++++ include/clang/AST/RecursiveASTVisitor.h | 6 + include/clang/Basic/DiagnosticSemaKinds.td | 10 +- include/clang/Basic/OpenMPKinds.def | 2 + include/clang/Sema/Sema.h | 5 + lib/AST/OpenMPClause.cpp | 51 +++++ lib/AST/StmtPrinter.cpp | 8 + lib/AST/StmtProfile.cpp | 3 + lib/Basic/OpenMPKinds.cpp | 2 + lib/CodeGen/CGStmtOpenMP.cpp | 1 + lib/Parse/ParseOpenMP.cpp | 5 +- lib/Sema/SemaOpenMP.cpp | 269 +++++++++++++++-------- lib/Sema/TreeTransform.h | 25 +++ lib/Serialization/ASTReaderStmt.cpp | 53 +++++ lib/Serialization/ASTWriterStmt.cpp | 20 ++ test/OpenMP/nesting_of_regions.cpp | 80 +++---- test/OpenMP/target_map_messages.cpp | 8 +- test/OpenMP/target_parallel_for_map_messages.cpp | 4 +- test/OpenMP/target_parallel_map_messages.cpp | 4 +- test/OpenMP/target_update_ast_print.cpp | 45 ++++ test/OpenMP/target_update_device_messages.cpp | 22 +- test/OpenMP/target_update_if_messages.cpp | 38 ++-- test/OpenMP/target_update_messages.cpp | 12 +- test/OpenMP/target_update_to_messages.cpp | 175 +++++++++++++++ tools/libclang/CIndex.cpp | 3 + 25 files changed, 768 insertions(+), 186 deletions(-) create mode 100644 test/OpenMP/target_update_ast_print.cpp create mode 100644 test/OpenMP/target_update_to_messages.cpp