This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from dd578bb497 clang/test/Driver/fsanitize.c: Fix -fsanitize=vptr using def [...] new 657b099cc2 [Sema] Diagnose default-initialization, destruction, and cop [...]
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 | 24 +++ include/clang/AST/DeclBase.h | 9 +- include/clang/AST/Type.h | 45 +++- include/clang/Basic/DiagnosticSemaKinds.td | 19 +- include/clang/Sema/Sema.h | 42 ++++ lib/AST/Type.cpp | 60 +----- lib/Sema/Sema.cpp | 18 +- lib/Sema/SemaDecl.cpp | 329 ++++++++++++++++++++++++++--- lib/Sema/SemaExpr.cpp | 33 ++- lib/Sema/SemaType.cpp | 5 + lib/Serialization/ASTReaderDecl.cpp | 3 + lib/Serialization/ASTWriterDecl.cpp | 9 + test/CodeGenObjC/Inputs/strong_in_union.h | 10 - test/CodeGenObjC/strong-in-c-struct.m | 15 +- test/PCH/non-trivial-c-union.m | 24 +++ test/SemaObjC/arc-decls.m | 6 +- test/SemaObjC/non-trivial-c-union.m | 82 +++++++ 17 files changed, 611 insertions(+), 122 deletions(-) delete mode 100644 test/CodeGenObjC/Inputs/strong_in_union.h create mode 100644 test/PCH/non-trivial-c-union.m create mode 100644 test/SemaObjC/non-trivial-c-union.m