This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 11911b2d6c [OpenMP][Docs] Provide implementation status details new 9ff46a3fe1 Generate parent context id from Decl* instead of DeclContext*. new 3c6ee3daca [NewPM][Sancov] Make Sancov a Module Pass instead of 2 Passes new 940249d817 [c++20] P1143R2: Add support for the C++20 'constinit' keyword.
The 3 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/Decl.h | 8 + include/clang/Basic/Attr.td | 20 +- include/clang/Basic/DiagnosticCommonKinds.td | 12 +- include/clang/Basic/DiagnosticParseKinds.td | 3 +- include/clang/Basic/DiagnosticSemaKinds.td | 34 ++- include/clang/Basic/Specifiers.h | 3 +- include/clang/Basic/TokenKinds.def | 1 + lib/AST/Decl.cpp | 16 ++ lib/AST/JSONNodeDumper.cpp | 11 +- lib/CodeGen/BackendUtil.cpp | 8 - lib/Frontend/InitPreprocessor.cpp | 4 +- lib/Parse/ParseDecl.cpp | 12 +- lib/Parse/ParseDeclCXX.cpp | 2 + lib/Parse/ParseTentative.cpp | 1 + lib/Sema/DeclSpec.cpp | 15 +- lib/Sema/SemaDecl.cpp | 172 +++++++++++-- lib/Sema/SemaDeclAttr.cpp | 4 +- lib/Sema/SemaType.cpp | 4 +- test/AST/ast-dump-decl-context-json.cpp | 286 +++++++++++++++++++++ test/AST/ast-dump-decl-json.c | 2 +- test/AST/ast-dump-funcs-json.cpp | 2 +- test/AST/ast-dump-template-decls-json.cpp | 4 +- test/CXX/dcl.dcl/dcl.spec/dcl.constinit/p1.cpp | 55 ++++ test/CXX/dcl.dcl/dcl.spec/dcl.constinit/p2.cpp | 8 + test/CXX/dcl.dcl/dcl.spec/dcl.constinit/p3.cpp | 6 + test/FixIt/fixit-c++2a.cpp | 38 ++- test/Lexer/cxx-features.cpp | 4 + test/Lexer/cxx2a_keyword_as_cxx17.cpp | 2 + test/Misc/pragma-attribute-cxx.cpp | 4 +- ...pragma-attribute-supported-attributes-list.test | 2 +- test/Parser/cxx0x-decl.cpp | 19 +- .../attr-require-constant-initialization.cpp | 11 + www/cxx_status.html | 2 +- 33 files changed, 683 insertions(+), 92 deletions(-) create mode 100644 test/AST/ast-dump-decl-context-json.cpp create mode 100644 test/CXX/dcl.dcl/dcl.spec/dcl.constinit/p1.cpp create mode 100644 test/CXX/dcl.dcl/dcl.spec/dcl.constinit/p2.cpp create mode 100644 test/CXX/dcl.dcl/dcl.spec/dcl.constinit/p3.cpp