commit | 159875f624d17a1ab55886c75f756846f1eb5360 | [log] [tgz] |
---|---|---|
author | Mike Stump <mrs@apple.com> | Fri May 01 01:31:57 2009 +0000 |
committer | Mike Stump <mrs@apple.com> | Fri May 01 01:31:57 2009 +0000 |
tree | dcc7af7b431730efd269220965e8b38fdac147d4 | |
parent | 6f5661f43769f5b75cf863b1e966b9c1e58da6e0 [diff] [blame] |
Don't assert when we think we need copy/dispose, but don't need them. Radar 6838889 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70525 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/blocks.c b/test/CodeGen/blocks.c index c7fe3a9..39c5b06 100644 --- a/test/CodeGen/blocks.c +++ b/test/CodeGen/blocks.c
@@ -22,5 +22,9 @@ void *Q = __func__; }; +void (^test1)(void) = ^(void) { + __block int i; + ^ { i = 1; }(); +}; // RUN: true