This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 4e7c8ba [PCH] Add a fno-pch-timestamp option to cc1 to disable inclus [...] new 39ba7a7 [OpenMP] Initial implementation of parse+sema for clause use_ [...]
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 | 65 +++++++ include/clang/AST/RecursiveASTVisitor.h | 7 + include/clang/Basic/DiagnosticSemaKinds.td | 2 + include/clang/Basic/OpenMPKinds.def | 2 + include/clang/Sema/Sema.h | 5 + lib/AST/OpenMPClause.cpp | 20 ++ lib/AST/StmtPrinter.cpp | 8 + lib/AST/StmtProfile.cpp | 4 + lib/Basic/OpenMPKinds.cpp | 2 + lib/CodeGen/CGStmtOpenMP.cpp | 1 + lib/Parse/ParseOpenMP.cpp | 3 + lib/Sema/SemaOpenMP.cpp | 43 +++++ lib/Sema/TreeTransform.h | 27 +++ lib/Serialization/ASTReaderStmt.cpp | 14 ++ lib/Serialization/ASTWriterStmt.cpp | 8 + .../target_data_use_device_ptr_ast_print.cpp | 154 +++++++++++++++ .../OpenMP/target_data_use_device_ptr_messages.cpp | 206 +++++++++++++++++++++ tools/libclang/CIndex.cpp | 3 + 18 files changed, 574 insertions(+) create mode 100644 test/OpenMP/target_data_use_device_ptr_ast_print.cpp create mode 100644 test/OpenMP/target_data_use_device_ptr_messages.cpp