This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d45c4ab78c [ASTImporter] Add test for CXXNoexceptExpr new de7be6a701 Add a new flag and attributes to control static destructor r [...]
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 | 3 ++ include/clang/Basic/Attr.td | 12 +++++++ include/clang/Basic/AttrDocs.td | 19 ++++++++++ include/clang/Basic/DiagnosticSemaKinds.td | 4 +++ include/clang/Basic/LangOptions.def | 2 ++ include/clang/Driver/Options.td | 7 ++++ lib/AST/Decl.cpp | 6 ++++ lib/CodeGen/ItaniumCXXABI.cpp | 3 ++ lib/CodeGen/MicrosoftCXXABI.cpp | 3 ++ lib/Driver/ToolChains/Clang.cpp | 4 +++ lib/Frontend/CompilerInvocation.cpp | 2 ++ lib/Sema/SemaDeclAttr.cpp | 19 ++++++++++ lib/Sema/SemaDeclCXX.cpp | 3 ++ test/CodeGenCXX/always_destroy.cpp | 31 +++++++++++++++++ test/CodeGenCXX/no_destroy.cpp | 31 +++++++++++++++++ ...pragma-attribute-supported-attributes-list.test | 4 ++- test/SemaCXX/no_destroy.cpp | 40 ++++++++++++++++++++++ test/SemaCXX/warn-exit-time-destructors.cpp | 5 +++ 18 files changed, 197 insertions(+), 1 deletion(-) create mode 100644 test/CodeGenCXX/always_destroy.cpp create mode 100644 test/CodeGenCXX/no_destroy.cpp create mode 100644 test/SemaCXX/no_destroy.cpp