This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 55174d052d [Hexagon] Add inline-asm constraint 'a' for modifier register class new 8b70113357 [OPENMP] Initial support 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 | 210 ++++++++++++ include/clang/AST/RecursiveASTVisitor.h | 22 ++ include/clang/Basic/DiagnosticSemaKinds.td | 6 + include/clang/Basic/OpenMPKinds.def | 4 + include/clang/Sema/Sema.h | 7 + lib/AST/OpenMPClause.cpp | 57 ++++ lib/AST/StmtPrinter.cpp | 22 ++ lib/AST/StmtProfile.cpp | 24 ++ lib/Basic/OpenMPKinds.cpp | 6 +- lib/CodeGen/CGStmtOpenMP.cpp | 1 + lib/Parse/ParseOpenMP.cpp | 27 +- lib/Sema/SemaOpenMP.cpp | 188 +++++++++++ lib/Sema/TreeTransform.h | 61 ++++ lib/Serialization/ASTReaderStmt.cpp | 37 ++ lib/Serialization/ASTWriterStmt.cpp | 19 ++ test/OpenMP/task_ast_print.cpp | 29 +- test/OpenMP/task_in_reduction_message.cpp | 308 +++++++++++++++++ test/OpenMP/taskloop_in_reduction_messages.cpp | 376 +++++++++++++++++++++ .../OpenMP/taskloop_simd_in_reduction_messages.cpp | 376 +++++++++++++++++++++ tools/libclang/CIndex.cpp | 17 + 20 files changed, 1775 insertions(+), 22 deletions(-) create mode 100644 test/OpenMP/task_in_reduction_message.cpp create mode 100644 test/OpenMP/taskloop_in_reduction_messages.cpp create mode 100644 test/OpenMP/taskloop_simd_in_reduction_messages.cpp