diff options
author | Mike Stump <mrs@apple.com> | 2009-03-25 17:58:24 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-25 17:58:24 +0000 |
commit | d2142cffbf0b34d9f7cd4e36539205c8f02ff7d2 (patch) | |
tree | 031d2e4aaae5cda49380cca070106dd2d0c1dd79 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 12ef15f8b2473479e02dfc97b1a859358ba573ef (diff) | |
download | bcm5719-llvm-d2142cffbf0b34d9f7cd4e36539205c8f02ff7d2.tar.gz bcm5719-llvm-d2142cffbf0b34d9f7cd4e36539205c8f02ff7d2.zip |
Fixup codegen for block literals that bleed copy/dispose information
from previous block literals.
llvm-svn: 67696
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index acac86d8c2b..f850cfdc5bc 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -267,7 +267,8 @@ public: //===--------------------------------------------------------------------===// llvm::Value *BuildBlockLiteralTmp(const BlockExpr *); - llvm::Constant *BuildDescriptorBlockDecl(uint64_t Size, + llvm::Constant *BuildDescriptorBlockDecl(bool BlockHasCopyDispose, + uint64_t Size, const llvm::StructType *, std::vector<HelperInfo> *); |