This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0a889a0 [OpenMP] Parsing and sema support for the to clause new b3b107d [OpenMP] Parsing and sema support for the from 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 | 104 +++++++++++++++ include/clang/AST/RecursiveASTVisitor.h | 6 + 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 | 6 +- lib/Sema/SemaOpenMP.cpp | 33 ++++- lib/Sema/TreeTransform.h | 26 ++++ lib/Serialization/ASTReaderStmt.cpp | 53 ++++++++ lib/Serialization/ASTWriterStmt.cpp | 20 +++ test/OpenMP/target_update_ast_print.cpp | 7 + test/OpenMP/target_update_device_messages.cpp | 24 ++-- test/OpenMP/target_update_from_messages.cpp | 176 ++++++++++++++++++++++++++ test/OpenMP/target_update_if_messages.cpp | 36 +++--- test/OpenMP/target_update_messages.cpp | 2 +- test/OpenMP/target_update_to_messages.cpp | 4 +- tools/libclang/CIndex.cpp | 3 + 21 files changed, 532 insertions(+), 40 deletions(-) create mode 100644 test/OpenMP/target_update_from_messages.cpp