This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0ecd5c3753 [test] Pass in fixed triple for openmp-offload.c new c64cb39314 [OpenMP] Initial implementation of teams distribute code generation
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: lib/Basic/OpenMPKinds.cpp | 4 +- lib/CodeGen/CGStmtOpenMP.cpp | 34 ++- lib/Sema/SemaOpenMP.cpp | 4 +- test/OpenMP/teams_distribute_codegen.cpp | 241 +++++++++++++++ test/OpenMP/teams_distribute_collapse_codegen.cpp | 126 ++++++++ .../teams_distribute_dist_schedule_codegen.cpp | 206 +++++++++++++ .../teams_distribute_firstprivate_codegen.cpp | 333 +++++++++++++++++++++ ...pp => teams_distribute_lastprivate_codegen.cpp} | 51 ++-- test/OpenMP/teams_distribute_private_codegen.cpp | 233 ++++++++++++++ test/OpenMP/teams_distribute_reduction_codegen.cpp | 217 ++++++++++++++ 10 files changed, 1403 insertions(+), 46 deletions(-) create mode 100644 test/OpenMP/teams_distribute_codegen.cpp create mode 100644 test/OpenMP/teams_distribute_collapse_codegen.cpp create mode 100644 test/OpenMP/teams_distribute_dist_schedule_codegen.cpp create mode 100644 test/OpenMP/teams_distribute_firstprivate_codegen.cpp copy test/OpenMP/{distribute_lastprivate_codegen.cpp => teams_distribute_lastpriva [...] create mode 100644 test/OpenMP/teams_distribute_private_codegen.cpp create mode 100644 test/OpenMP/teams_distribute_reduction_codegen.cpp