This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from b0e340c Reapply r276856 "Adjust Registry interface to not require plu [...] new 56b9ac6 [OpenMP] Codegen for use_device_ptr clause. new f15ab0c [OpenMP] Code generation for the is_device_ptr clause new 15f36df [OpenMP][CUDA] Do not forward OpenMP flags for CUDA device actions.
The 3 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 | 233 +++++++++-- include/clang/Basic/DiagnosticSemaKinds.td | 4 +- lib/AST/OpenMPClause.cpp | 127 ++++-- lib/CodeGen/CGOpenMPRuntime.cpp | 422 +++++++++++++------ lib/CodeGen/CGOpenMPRuntime.h | 50 ++- lib/CodeGen/CGStmtOpenMP.cpp | 138 +++++- lib/CodeGen/CodeGenFunction.h | 3 + lib/Driver/Tools.cpp | 8 +- lib/Sema/SemaOpenMP.cpp | 189 +++++++-- lib/Serialization/ASTReaderStmt.cpp | 99 ++++- lib/Serialization/ASTWriterStmt.cpp | 34 +- test/Driver/offloading-interoperability.c | 17 + test/OpenMP/target_data_use_device_ptr_codegen.cpp | 464 +++++++++++++++++++++ test/OpenMP/target_is_device_ptr_codegen.cpp | 293 +++++++++++++ test/OpenMP/target_is_device_ptr_messages.cpp | 34 ++ 15 files changed, 1852 insertions(+), 263 deletions(-) create mode 100644 test/Driver/offloading-interoperability.c create mode 100644 test/OpenMP/target_data_use_device_ptr_codegen.cpp create mode 100644 test/OpenMP/target_is_device_ptr_codegen.cpp