diff options
author | John McCall <rjmccall@apple.com> | 2011-03-04 08:00:29 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-03-04 08:00:29 +0000 |
commit | 6647584951c6ec47248aaed409c82a17e1ce7f3f (patch) | |
tree | 4b8c1dafffb472f4d344a65f8f16c6fde765008c /clang/lib/CodeGen | |
parent | 3cec6f55638064cf86ae60c568eebf234f7d8ca8 (diff) | |
download | bcm5719-llvm-6647584951c6ec47248aaed409c82a17e1ce7f3f.tar.gz bcm5719-llvm-6647584951c6ec47248aaed409c82a17e1ce7f3f.zip |
Let's do super message sends with static allocas instead of dynamic ones.
llvm-svn: 126989
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGObjCMac.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGObjCMac.cpp b/clang/lib/CodeGen/CGObjCMac.cpp index 68fb92081f5..d2af104e483 100644 --- a/clang/lib/CodeGen/CGObjCMac.cpp +++ b/clang/lib/CodeGen/CGObjCMac.cpp @@ -1556,7 +1556,7 @@ CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, // Create and init a super structure; this is a (receiver, class) // pair we will pass to objc_msgSendSuper. llvm::Value *ObjCSuper = - CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super"); + CGF.CreateTempAlloca(ObjCTypes.SuperTy, "objc_super"); llvm::Value *ReceiverAsObject = CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy); CGF.Builder.CreateStore(ReceiverAsObject, @@ -5837,7 +5837,7 @@ CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, // Create and init a super structure; this is a (receiver, class) // pair we will pass to objc_msgSendSuper. llvm::Value *ObjCSuper = - CGF.Builder.CreateAlloca(ObjCTypes.SuperTy, 0, "objc_super"); + CGF.CreateTempAlloca(ObjCTypes.SuperTy, "objc_super"); llvm::Value *ReceiverAsObject = CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy); |