diff options
author | Mike Stump <mrs@apple.com> | 2009-03-13 23:34:28 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-13 23:34:28 +0000 |
commit | 5469f29aa92e30ab48d350ad9bd43b8fc9edd445 (patch) | |
tree | ce26b151b1a92d2a287636b02a3832aaec120b22 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | b4cf3ad61b81103ceb3ed811c950216407fc5416 (diff) | |
download | bcm5719-llvm-5469f29aa92e30ab48d350ad9bd43b8fc9edd445.tar.gz bcm5719-llvm-5469f29aa92e30ab48d350ad9bd43b8fc9edd445.zip |
Do up codegen for function static data and externs in functions in block
literals.
llvm-svn: 66984
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 0b34d7a92d4..7443e449166 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -272,6 +272,7 @@ public: llvm::Function *GenerateBlockFunction(const BlockExpr *BExpr, const BlockInfo& Info, + llvm::DenseMap<const Decl*, llvm::Value*> ldm, uint64_t &Size, uint64_t &Align, llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls, bool &subBlockHasCopyDispose); |