forked from OSchip/llvm-project
Pass the CodeGenModule object to GenerateBlockFunction, instead of *this (which will call the copy constructor).
Also, since we're creating a new CodeGenFunction object for each block function, we don't need to clear the BreakContinueStack. llvm-svn: 65371
This commit is contained in:
parent
18e91257e4
commit
b9c9e1d16f
|
@ -154,7 +154,7 @@ llvm::Constant *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
|
|||
BlockInfo Info(0, Name);
|
||||
uint64_t subBlockSize;
|
||||
llvm::Function *Fn
|
||||
= CodeGenFunction(*this).GenerateBlockFunction(BE, Info, subBlockSize);
|
||||
= CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, subBlockSize);
|
||||
Elts.push_back(Fn);
|
||||
|
||||
// __descriptor
|
||||
|
@ -412,11 +412,6 @@ llvm::Function *CodeGenFunction::GenerateBlockFunction(const BlockExpr *Expr,
|
|||
|
||||
const BlockDecl *BD = Expr->getBlockDecl();
|
||||
|
||||
// FIXME: there are tons of variables in CGF that are copied, we probably
|
||||
// don't want many of them, any of them. When we trim that, this can go away.
|
||||
// Help ensure no control flow in or out of the block.
|
||||
BreakContinueStack.clear();
|
||||
|
||||
// FIXME: This leaks
|
||||
ImplicitParamDecl *SelfDecl =
|
||||
ImplicitParamDecl::Create(getContext(), 0,
|
||||
|
|
Loading…
Reference in New Issue