diff options
author | John McCall <rjmccall@apple.com> | 2011-10-04 06:23:45 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-10-04 06:23:45 +0000 |
commit | 348f16fc7c71f0d9b651cb79fd1012843073493f (patch) | |
tree | d4345e03f0c5e4ad2b4d87a1d46ec7d48b54bbd4 /lib/CodeGen/CodeGenFunction.h | |
parent | 10a82cde7c317c5dd41dc3faf17f503c52ce2a3d (diff) |
Mark calls to objc_retainBlock that don't result from casts
to id so that we can still optimize them appropriately.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 0f120923d6..9a18d3367b 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2129,7 +2129,7 @@ public: bool ignored); llvm::Value *EmitARCRetain(QualType type, llvm::Value *value); llvm::Value *EmitARCRetainNonBlock(llvm::Value *value); - llvm::Value *EmitARCRetainBlock(llvm::Value *value); + llvm::Value *EmitARCRetainBlock(llvm::Value *value, bool mandatory); void EmitARCRelease(llvm::Value *value, bool precise); llvm::Value *EmitARCAutorelease(llvm::Value *value); llvm::Value *EmitARCAutoreleaseReturnValue(llvm::Value *value); @@ -2147,6 +2147,7 @@ public: llvm::Value *EmitObjCConsumeObject(QualType T, llvm::Value *Ptr); llvm::Value *EmitObjCExtendObjectLifetime(QualType T, llvm::Value *Ptr); + llvm::Value *EmitARCExtendBlockObject(const Expr *expr); llvm::Value *EmitARCRetainScalarExpr(const Expr *expr); llvm::Value *EmitARCRetainAutoreleaseScalarExpr(const Expr *expr); |