This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 8e0f894a0e [analyzer] Fix a crash on casting symbolic pointers to deriv [...] new ac26bee66c [OPENMP] Add support for OMP5 requires directive + unified_a [...]
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/DeclOpenMP.h | 71 ++++++++++++++++++++ include/clang/AST/OpenMPClause.h | 31 +++++++++ include/clang/AST/RecursiveASTVisitor.h | 12 ++++ include/clang/Basic/DeclNodes.td | 1 + include/clang/Basic/DiagnosticParseKinds.td | 2 + include/clang/Basic/DiagnosticSemaKinds.td | 6 ++ include/clang/Basic/OpenMPKinds.def | 9 +++ include/clang/Sema/Sema.h | 12 +++- include/clang/Serialization/ASTBitCodes.h | 3 + lib/AST/ASTDumper.cpp | 21 ++++++ lib/AST/DeclBase.cpp | 1 + lib/AST/DeclOpenMP.cpp | 32 +++++++++ lib/AST/DeclPrinter.cpp | 15 ++++- lib/AST/OpenMPClause.cpp | 2 + lib/AST/StmtPrinter.cpp | 4 ++ lib/AST/StmtProfile.cpp | 3 + lib/Basic/OpenMPKinds.cpp | 13 ++++ lib/CodeGen/CGDecl.cpp | 5 ++ lib/CodeGen/CGOpenMPRuntime.cpp | 2 + lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 4 ++ lib/CodeGen/CGStmtOpenMP.cpp | 1 + lib/CodeGen/CodeGenModule.cpp | 4 ++ lib/CodeGen/CodeGenModule.h | 4 ++ lib/Parse/ParseOpenMP.cpp | 48 +++++++++++++ lib/Sema/SemaOpenMP.cpp | 78 +++++++++++++++++++++- lib/Sema/SemaTemplateInstantiateDecl.cpp | 5 ++ lib/Sema/TreeTransform.h | 6 ++ lib/Serialization/ASTCommon.cpp | 1 + lib/Serialization/ASTReader.cpp | 5 ++ lib/Serialization/ASTReaderDecl.cpp | 16 +++++ lib/Serialization/ASTWriter.cpp | 2 + lib/Serialization/ASTWriterDecl.cpp | 11 +++ ....cpp => requires_unified_address_ast_print.cpp} | 24 +------ test/OpenMP/requires_unified_address_messages.cpp | 36 ++++++++++ tools/libclang/CIndex.cpp | 4 ++ 35 files changed, 469 insertions(+), 25 deletions(-) copy test/OpenMP/{master_ast_print.cpp => requires_unified_address_ast_print.cpp} (60%) create mode 100644 test/OpenMP/requires_unified_address_messages.cpp