This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from fa8c4ac408 Revert changes from my previous refactoring - will need to f [...] new b001b6336b [OPENMP] Codegen for reduction clauses in 'taskloop' directives.
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/CodeGen/CGOpenMPRuntime.cpp | 452 ++++++++++++++++++++- lib/CodeGen/CGOpenMPRuntime.h | 77 +++- lib/CodeGen/CGStmtOpenMP.cpp | 51 ++- lib/Sema/SemaOpenMP.cpp | 2 + test/OpenMP/for_reduction_codegen.cpp | 2 +- test/OpenMP/for_reduction_codegen_UDR.cpp | 2 +- test/OpenMP/taskloop_codegen.cpp | 8 +- test/OpenMP/taskloop_firstprivate_codegen.cpp | 8 +- test/OpenMP/taskloop_lastprivate_codegen.cpp | 8 +- test/OpenMP/taskloop_private_codegen.cpp | 8 +- test/OpenMP/taskloop_reduction_codegen.cpp | 235 +++++++++++ test/OpenMP/taskloop_simd_codegen.cpp | 8 +- test/OpenMP/taskloop_simd_firstprivate_codegen.cpp | 8 +- test/OpenMP/taskloop_simd_lastprivate_codegen.cpp | 8 +- test/OpenMP/taskloop_simd_private_codegen.cpp | 8 +- test/OpenMP/taskloop_simd_reduction_codegen.cpp | 235 +++++++++++ 16 files changed, 1066 insertions(+), 54 deletions(-) create mode 100644 test/OpenMP/taskloop_reduction_codegen.cpp create mode 100644 test/OpenMP/taskloop_simd_reduction_codegen.cpp