This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 18207852ca SemaExpr - silence static analyzer getAs<> null dereference [...] new 39625a79bf For P0784R7: compute whether a variable has constant destruc [...]
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/Decl.h | 28 ++++- include/clang/Basic/DiagnosticASTKinds.td | 6 +- include/clang/Basic/DiagnosticSemaKinds.td | 2 + lib/AST/ASTContext.cpp | 2 +- lib/AST/Decl.cpp | 12 +++ lib/AST/ExprConstant.cpp | 136 +++++++++++++++++++------ lib/AST/Interp/Interp.cpp | 2 +- lib/AST/TextNodeDumper.cpp | 2 + lib/CodeGen/CGCall.cpp | 2 +- lib/CodeGen/CGClass.cpp | 2 +- lib/CodeGen/CGDecl.cpp | 15 +-- lib/CodeGen/CGDeclCXX.cpp | 11 +- lib/CodeGen/CodeGenModule.cpp | 4 +- lib/CodeGen/ItaniumCXXABI.cpp | 2 +- lib/Sema/SemaDeclCXX.cpp | 13 +++ lib/Serialization/ASTReaderDecl.cpp | 5 +- lib/Serialization/ASTWriterDecl.cpp | 11 +- test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/p9.cpp | 17 ++++ test/CXX/expr/expr.const/p6-2a.cpp | 43 ++++++++ test/CodeGenCXX/attr-no-destroy-d54344.cpp | 1 + test/CodeGenCXX/const-init-cxx2a.cpp | 57 ++++++++++- test/CodeGenCXX/no_destroy.cpp | 8 +- test/CodeGenCXX/non-const-init-cxx2a.cpp | 19 ++++ 23 files changed, 325 insertions(+), 75 deletions(-) create mode 100644 test/CXX/expr/expr.const/p6-2a.cpp create mode 100644 test/CodeGenCXX/non-const-init-cxx2a.cpp