diff options
author | Mike Stump <mrs@apple.com> | 2009-03-04 18:47:42 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-04 18:47:42 +0000 |
commit | 6c39666a77d4a57ff003ba127f8489aec6f74849 (patch) | |
tree | 9c5e9b0cd178b6ee8d235a6aa24b26cf9cb59fdf /clang/lib/CodeGen/CGBlocks.cpp | |
parent | d1b64be776a12cf281dd237ee68f8235b2edc513 (diff) | |
download | bcm5719-llvm-6c39666a77d4a57ff003ba127f8489aec6f74849.tar.gz bcm5719-llvm-6c39666a77d4a57ff003ba127f8489aec6f74849.zip |
Move more of the blocks code up and out.
llvm-svn: 66046
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index 8aabada259c..d877b171b9e 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/lib/CodeGen/CGBlocks.cpp @@ -501,7 +501,7 @@ llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) { } llvm::Constant * -CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) { +BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) { // Generate the block descriptor. const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy); const llvm::IntegerType *IntTy = cast<llvm::IntegerType>( @@ -534,9 +534,9 @@ CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) { uint64_t subBlockSize, subBlockAlign; llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls; llvm::Function *Fn - = CodeGenFunction(*this).GenerateBlockFunction(BE, Info, subBlockSize, - subBlockAlign, - subBlockDeclRefDecls); + = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, subBlockSize, + subBlockAlign, + subBlockDeclRefDecls); assert(subBlockSize == BlockLiteralSize && "no imports allowed for global block"); |