This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d8ac2ca1f5 [Sema] Change addr space diagnostics in casts to follow C++ style. new 3fbbfdb3b6 [OPENMP 5.0]Add initial support for 'allocate' directive.
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/ASTMutationListener.h | 5 + include/clang/AST/ASTNodeTraverser.h | 5 + include/clang/AST/DeclOpenMP.h | 67 +++++++++ include/clang/AST/RecursiveASTVisitor.h | 7 + include/clang/Basic/Attr.td | 7 + include/clang/Basic/DeclNodes.td | 1 + include/clang/Basic/OpenMPKinds.def | 1 + include/clang/Basic/OpenMPKinds.h | 1 + include/clang/Sema/Sema.h | 10 +- include/clang/Serialization/ASTBitCodes.h | 5 +- include/clang/Serialization/ASTWriter.h | 1 + lib/AST/ASTContext.cpp | 4 +- lib/AST/DeclBase.cpp | 1 + lib/AST/DeclOpenMP.cpp | 30 +++++ lib/AST/DeclPrinter.cpp | 18 ++- lib/AST/OpenMPClause.cpp | 2 + lib/Basic/OpenMPKinds.cpp | 6 + lib/CodeGen/CGDecl.cpp | 1 + lib/CodeGen/CGOpenMPRuntime.cpp | 3 + lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 6 +- lib/CodeGen/CGStmtOpenMP.cpp | 1 + lib/CodeGen/CodeGenModule.cpp | 3 + lib/Frontend/MultiplexConsumer.cpp | 6 + lib/Parse/ParseDecl.cpp | 3 +- lib/Parse/ParseOpenMP.cpp | 76 +++++++++-- lib/Parse/Parser.cpp | 3 +- lib/Sema/SemaOpenMP.cpp | 75 +++++++++-- lib/Sema/SemaTemplateInstantiateDecl.cpp | 15 +++ lib/Serialization/ASTCommon.cpp | 1 + lib/Serialization/ASTCommon.h | 1 + lib/Serialization/ASTReaderDecl.cpp | 22 ++- lib/Serialization/ASTWriter.cpp | 14 ++ lib/Serialization/ASTWriterDecl.cpp | 11 +- ...rivate_ast_print.cpp => allocate_ast_print.cpp} | 38 +++--- test/OpenMP/allocate_messages.cpp | 149 +++++++++++++++++++++ test/PCH/chain-openmp-allocate.cpp | 36 +++++ tools/libclang/CIndex.cpp | 1 + 37 files changed, 584 insertions(+), 52 deletions(-) copy test/OpenMP/{threadprivate_ast_print.cpp => allocate_ast_print.cpp} (74%) create mode 100644 test/OpenMP/allocate_messages.cpp create mode 100644 test/PCH/chain-openmp-allocate.cpp