This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 3081101b34 Fix a deprecated warning in the last commit. new ffa70d529c [CodeGen] Merge equivalent block copy/helper functions.
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/ASTContext.h | 28 ++- lib/AST/ASTContext.cpp | 19 +- lib/CodeGen/CGBlocks.cpp | 254 ++++++++++++++++----- lib/CodeGen/CGBlocks.h | 5 + lib/CodeGen/CGDecl.cpp | 3 +- lib/CodeGen/CGNonTrivialStruct.cpp | 24 +- lib/CodeGen/CodeGenFunction.cpp | 12 +- lib/CodeGen/CodeGenFunction.h | 26 ++- lib/Sema/SemaDecl.cpp | 10 +- lib/Serialization/ASTReaderDecl.cpp | 6 + lib/Serialization/ASTWriterDecl.cpp | 8 + test/CodeGen/blocks-1.c | 8 +- test/CodeGen/blocks.c | 63 ++--- .../sanitize-thread-no-checking-at-run-time.m | 2 +- test/CodeGenCXX/block-byref-cxx-objc.cpp | 48 +++- test/CodeGenCXX/blocks.cpp | 48 ++++ test/CodeGenCXX/cxx-block-objects.cpp | 4 +- test/CodeGenObjC/arc-blocks.m | 94 +++----- test/CodeGenObjC/debug-info-block-helper.m | 2 +- test/CodeGenObjC/debug-info-blocks.m | 4 +- test/CodeGenObjC/mrc-weak.m | 16 +- test/CodeGenObjC/strong-in-c-struct.m | 4 +- test/CodeGenObjCXX/arc-blocks.mm | 76 +++--- test/CodeGenObjCXX/lambda-to-block.mm | 2 +- test/CodeGenObjCXX/mrc-weak.mm | 8 +- test/PCH/block-helpers.cpp | 15 ++ test/PCH/block-helpers.h | 12 + 27 files changed, 560 insertions(+), 241 deletions(-) create mode 100644 test/PCH/block-helpers.cpp create mode 100644 test/PCH/block-helpers.h