This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from c9c456edbd [CodeGen][ARM] ARM runtime helper functions are not always soft-fp new 36f9c8f5c6 [OPENMP] Codegen for 'in_reduction' clause.
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 | 24 +++++- include/clang/AST/RecursiveASTVisitor.h | 2 + lib/AST/OpenMPClause.cpp | 18 ++++- lib/AST/StmtProfile.cpp | 4 + lib/CodeGen/CGStmtOpenMP.cpp | 50 ++++++++++++ lib/Sema/SemaOpenMP.cpp | 90 ++++++++++++++++++---- lib/Serialization/ASTReaderStmt.cpp | 4 + lib/Serialization/ASTWriterStmt.cpp | 2 + test/OpenMP/task_in_reduction_codegen.cpp | 81 +++++++++++++++++++ test/OpenMP/taskloop_in_reduction_codegen.cpp | 82 ++++++++++++++++++++ test/OpenMP/taskloop_simd_in_reduction_codegen.cpp | 82 ++++++++++++++++++++ tools/libclang/CIndex.cpp | 2 + 12 files changed, 420 insertions(+), 21 deletions(-) create mode 100644 test/OpenMP/task_in_reduction_codegen.cpp create mode 100644 test/OpenMP/taskloop_in_reduction_codegen.cpp create mode 100644 test/OpenMP/taskloop_simd_in_reduction_codegen.cpp