This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from aa117bd55e Update SanitizerCoverage doc regarding the issue with pc-tab [...] new e93ddfad28 [OpenMP 5.0] Parsing/sema support for "omp declare mapper" d [...]
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/DeclBase.h | 8 +- include/clang/AST/DeclCXX.h | 8 ++ include/clang/AST/DeclOpenMP.h | 102 +++++++++++++++++ include/clang/AST/RecursiveASTVisitor.h | 9 +- include/clang/Basic/DeclNodes.td | 1 + include/clang/Basic/DiagnosticParseKinds.td | 4 + include/clang/Basic/DiagnosticSemaKinds.td | 6 + include/clang/Basic/OpenMPKinds.def | 8 ++ include/clang/Parse/Parser.h | 7 ++ include/clang/Sema/Sema.h | 23 ++++ include/clang/Serialization/ASTBitCodes.h | 3 + lib/AST/ASTDumper.cpp | 5 + lib/AST/CXXInheritance.cpp | 15 +++ lib/AST/DeclBase.cpp | 4 + lib/AST/DeclOpenMP.cpp | 50 ++++++++ lib/AST/DeclPrinter.cpp | 22 +++- lib/AST/ItaniumMangle.cpp | 3 +- lib/AST/MicrosoftMangle.cpp | 3 +- lib/Basic/OpenMPKinds.cpp | 11 ++ lib/CodeGen/CGDecl.cpp | 10 ++ lib/CodeGen/CGOpenMPRuntime.cpp | 3 + lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 4 + lib/CodeGen/CodeGenModule.cpp | 8 ++ lib/CodeGen/CodeGenModule.h | 4 + lib/Parse/ParseOpenMP.cpp | 171 +++++++++++++++++++++++++++- lib/Sema/SemaDecl.cpp | 5 +- lib/Sema/SemaExpr.cpp | 14 +++ lib/Sema/SemaLookup.cpp | 8 ++ lib/Sema/SemaOpenMP.cpp | 146 ++++++++++++++++++++++++ lib/Sema/SemaTemplateInstantiateDecl.cpp | 84 +++++++++++++- lib/Serialization/ASTCommon.cpp | 1 + lib/Serialization/ASTReader.cpp | 4 +- lib/Serialization/ASTReaderDecl.cpp | 23 +++- lib/Serialization/ASTWriterDecl.cpp | 14 +++ test/OpenMP/declare_mapper_ast_print.c | 48 ++++++++ test/OpenMP/declare_mapper_ast_print.cpp | 97 ++++++++++++++++ test/OpenMP/declare_mapper_messages.c | 41 +++++++ test/OpenMP/declare_mapper_messages.cpp | 70 ++++++++++++ tools/libclang/CIndex.cpp | 1 + 39 files changed, 1035 insertions(+), 13 deletions(-) create mode 100644 test/OpenMP/declare_mapper_ast_print.c create mode 100644 test/OpenMP/declare_mapper_ast_print.cpp create mode 100644 test/OpenMP/declare_mapper_messages.c create mode 100644 test/OpenMP/declare_mapper_messages.cpp