This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from a2d3035e5b Use musttail for variadic method thunks when possible new ad203f89e5 [Sema] Diagnose default-initialization, destruction, and cop [...] new 99f9f61da7 [Sema][ObjC] Mark C union fields that have non-trivial ObjC [...] new faa49beaa8 Fix thunks.cpp test, don't FileCheck for anon namespace id
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/ASTContext.h | 5 + 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/ASTContext.cpp | 22 ++ lib/AST/Decl.cpp | 3 + lib/AST/Type.cpp | 60 +---- lib/Sema/Sema.cpp | 18 +- lib/Sema/SemaDecl.cpp | 360 ++++++++++++++++++++++++++--- lib/Sema/SemaExpr.cpp | 51 ++-- lib/Sema/SemaType.cpp | 37 +-- lib/Serialization/ASTReaderDecl.cpp | 3 + lib/Serialization/ASTWriterDecl.cpp | 9 + test/CodeGenCXX/thunks.cpp | 2 +- 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/Inputs/non-trivial-c-union.h | 19 ++ test/SemaObjC/arc-decls.m | 6 +- test/SemaObjC/non-trivial-c-union.m | 88 +++++++ 22 files changed, 699 insertions(+), 172 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/Inputs/non-trivial-c-union.h create mode 100644 test/SemaObjC/non-trivial-c-union.m