This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 15c3e8eb9c [Support] Add overload writeFileAtomically(std::function Writer) new 7017afac96 [OPENMP5.0]Add basic support for declare variant 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/Basic/DiagnosticParseKinds.td | 11 +- include/clang/Basic/DiagnosticSemaKinds.td | 27 +++- include/clang/Basic/OpenMPKinds.def | 1 + include/clang/Parse/Parser.h | 7 +- include/clang/Sema/Sema.h | 19 +++ lib/Basic/OpenMPKinds.cpp | 5 +- lib/CodeGen/CGOpenMPRuntime.cpp | 5 + lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 4 + lib/Parse/ParseOpenMP.cpp | 126 +++++++++++++++- lib/Sema/SemaDecl.cpp | 160 ++++++++++---------- lib/Sema/SemaOpenMP.cpp | 213 +++++++++++++++++++++++++- test/OpenMP/declare_variant_messages.c | 92 ++++++++++++ test/OpenMP/declare_variant_messages.cpp | 225 ++++++++++++++++++++++++++++ 13 files changed, 804 insertions(+), 91 deletions(-) create mode 100644 test/OpenMP/declare_variant_messages.c create mode 100644 test/OpenMP/declare_variant_messages.cpp