diff options
author | Mike Stump <mrs@apple.com> | 2009-05-16 07:57:57 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-05-16 07:57:57 +0000 |
commit | 18bb9284fffb62977647bffaf0bd5fec17241751 (patch) | |
tree | 427893adbc024329269505b9738e89a0763172ee /clang/lib/CodeGen/CGBlocks.cpp | |
parent | 87c57acfb760e71fae91b0bc30096a82cae3cb93 (diff) | |
download | bcm5719-llvm-18bb9284fffb62977647bffaf0bd5fec17241751.tar.gz bcm5719-llvm-18bb9284fffb62977647bffaf0bd5fec17241751.zip |
Reflow some comments.
llvm-svn: 71937
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.cpp b/clang/lib/CodeGen/CGBlocks.cpp index b04a942e4fa..ead689cc01b 100644 --- a/clang/lib/CodeGen/CGBlocks.cpp +++ b/clang/lib/CodeGen/CGBlocks.cpp @@ -133,8 +133,8 @@ llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) { BlockHasCopyDispose |= subBlockHasCopyDispose; Elts[3] = Fn; - // FIXME: Don't use BlockHasCopyDispose, it is set more often then necessary, for - // example: { ^{ __block int i; ^{ i = 1; }(); }(); } + // FIXME: Don't use BlockHasCopyDispose, it is set more often then + // necessary, for example: { ^{ __block int i; ^{ i = 1; }(); }(); } if (subBlockHasCopyDispose) flags |= BLOCK_HAS_COPY_DISPOSE; |