This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 6ba4f924d9 Fix a couple of cases where we would fail to correctly parse [...] new f4ab7b42eb [ObjC] Allow declaring __strong pointer fields in structs in [...]
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: docs/LanguageExtensions.rst | 6 +- include/clang/AST/Decl.h | 30 + include/clang/AST/Type.h | 62 +- include/clang/Basic/DiagnosticSemaKinds.td | 12 + lib/AST/ASTContext.cpp | 17 +- lib/AST/Decl.cpp | 4 +- lib/AST/Type.cpp | 52 +- lib/CodeGen/CGBlocks.cpp | 177 +++-- lib/CodeGen/CGCall.cpp | 30 +- lib/CodeGen/CGDecl.cpp | 28 +- lib/CodeGen/CGDeclCXX.cpp | 1 + lib/CodeGen/CGExprAgg.cpp | 43 +- lib/CodeGen/CGNonTrivialStruct.cpp | 855 +++++++++++++++++++++ lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGenFunction.h | 12 + lib/Lex/PPMacroExpansion.cpp | 1 + lib/Sema/JumpDiagnostics.cpp | 8 + lib/Sema/SemaDecl.cpp | 20 +- lib/Sema/SemaExpr.cpp | 8 +- test/ARCMT/checking.m | 2 +- test/CodeGenObjC/nontrivial-c-struct-exception.m | 33 + .../nontrivial-c-struct-func-name-collision.m | 14 + test/CodeGenObjC/strong-in-c-struct.m | 522 +++++++++++++ test/Lexer/has_feature_objc_arc.m | 8 + test/SemaObjC/arc-decls.m | 6 +- test/SemaObjC/arc-system-header.m | 6 +- test/SemaObjC/strong-in-c-struct.m | 56 ++ 27 files changed, 1917 insertions(+), 97 deletions(-) create mode 100644 lib/CodeGen/CGNonTrivialStruct.cpp create mode 100644 test/CodeGenObjC/nontrivial-c-struct-exception.m create mode 100644 test/CodeGenObjC/nontrivial-c-struct-func-name-collision.m create mode 100644 test/CodeGenObjC/strong-in-c-struct.m create mode 100644 test/SemaObjC/strong-in-c-struct.m