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 | f5408fe484495ee4efbdd709c8a2c2fdbbbdb328 (patch) | |
tree | b09dd07e36daa3a9cb86a0c6c0ab33144deb0c20 /lib/CodeGen/CGBlocks.cpp | |
parent | 390b4cc8b45a05612349269ef08faab3e4688f06 (diff) |
Reflow some comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | lib/CodeGen/CGBlocks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGBlocks.cpp b/lib/CodeGen/CGBlocks.cpp index b04a942e4f..ead689cc01 100644 --- a/lib/CodeGen/CGBlocks.cpp +++ b/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; |