diff options
author | Mike Stump <mrs@apple.com> | 2009-10-20 20:30:01 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-10-20 20:30:01 +0000 |
commit | bf1914ba8b3ed6c8492ac5857d790384b019cd0a (patch) | |
tree | 22b2ffb1f64eba9405438c92aba84edeae03ebd2 /lib/CodeGen/CGBlocks.cpp | |
parent | 2357da088fdefea1df083a6816f8553c3f53e0d3 (diff) |
For now, we need to have the llvm type of the block pointer remain as
it was. Fixes codegen bug introduced yesterday.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84668 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | lib/CodeGen/CGBlocks.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/CodeGen/CGBlocks.cpp b/lib/CodeGen/CGBlocks.cpp index 5998493986..8e020c80ea 100644 --- a/lib/CodeGen/CGBlocks.cpp +++ b/lib/CodeGen/CGBlocks.cpp @@ -576,7 +576,10 @@ BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) { } llvm::Value *CodeGenFunction::LoadBlockStruct() { - return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self"); + llvm::Value *V = Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], + "self"); + // For now, we codegen based upon byte offsets. + return Builder.CreateBitCast(V, PtrToInt8Ty); } llvm::Function * |