This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from d4d6e97339 [OPENMP] Fix build with MSVC, NFC. new 9a8c592345 [ObjC] Allow declaring __weak pointer fields in C structs in ARC.
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 | 18 +++ include/clang/AST/DeclCXX.h | 18 --- include/clang/AST/Type.h | 10 ++ lib/AST/ASTImporter.cpp | 1 - lib/AST/Decl.cpp | 3 +- lib/AST/DeclCXX.cpp | 1 - lib/AST/Type.cpp | 32 +++- lib/CodeGen/CGBlocks.cpp | 7 +- lib/CodeGen/CGNonTrivialStruct.cpp | 59 ++++++- lib/CodeGen/CGObjC.cpp | 15 ++ lib/CodeGen/CodeGenFunction.h | 2 + lib/CodeGen/TargetInfo.cpp | 27 +++- lib/Sema/SemaDecl.cpp | 8 +- lib/Serialization/ASTReaderDecl.cpp | 4 +- lib/Serialization/ASTWriter.cpp | 2 +- lib/Serialization/ASTWriterDecl.cpp | 2 + test/CodeGenObjC/nontrivial-c-struct-exception.m | 31 +++- test/CodeGenObjC/weak-in-c-struct.m | 193 +++++++++++++++++++++++ test/Modules/Inputs/module.map | 10 ++ test/Modules/Inputs/template-nontrivial0.h | 13 ++ test/Modules/Inputs/template-nontrivial1.h | 6 + test/Modules/templates.mm | 10 ++ 22 files changed, 421 insertions(+), 51 deletions(-) create mode 100644 test/CodeGenObjC/weak-in-c-struct.m create mode 100644 test/Modules/Inputs/template-nontrivial0.h create mode 100644 test/Modules/Inputs/template-nontrivial1.h