This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e0f57df6fa [RISCV] Implement RISCV ABI lowering new c024ae818a [OPENMP] Add codegen for `depend` clauses on `target` directive. new c4a6d8a835 [OPENMP] Update docs for OpenMP status, NFC.
The 2 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: docs/OpenMPSupport.rst | 2 +- include/clang/AST/OpenMPClause.h | 9 +- lib/Basic/OpenMPKinds.cpp | 4 + lib/CodeGen/CGOpenMPRuntime.cpp | 276 ++++++++++++--------- lib/CodeGen/CGOpenMPRuntime.h | 8 +- lib/CodeGen/CGStmtOpenMP.cpp | 22 +- lib/Sema/SemaOpenMP.cpp | 91 ++++++- test/OpenMP/target_codegen.cpp | 20 +- test/OpenMP/target_depend_codegen.cpp | 261 +++++++++++++++++++ test/OpenMP/target_parallel_codegen.cpp | 12 +- test/OpenMP/target_parallel_for_codegen.cpp | 12 +- test/OpenMP/target_parallel_for_simd_codegen.cpp | 12 +- test/OpenMP/target_simd_codegen.cpp | 12 +- test/OpenMP/target_teams_codegen.cpp | 12 +- test/OpenMP/target_teams_distribute_codegen.cpp | 12 +- .../target_teams_distribute_simd_codegen.cpp | 12 +- 16 files changed, 582 insertions(+), 195 deletions(-) create mode 100644 test/OpenMP/target_depend_codegen.cpp