diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-02-19 01:40:48 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-02-19 01:40:48 +0000 |
commit | 170e41d856f0bf39799fac9cc1e666bb857afa0c (patch) | |
tree | 189dea5a8e1c4c05737c0b9f7bd74e947cec1316 | |
parent | 0e12b44081c6395a6d60a05a85a6012f7bb23b16 (diff) |
Remove this test for now.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96651 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenObjC/blocks-5.m | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGenObjC/blocks-5.m b/test/CodeGenObjC/blocks-5.m deleted file mode 100644 index 2f27d75afd..0000000000 --- a/test/CodeGenObjC/blocks-5.m +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %clang_cc1 -fblocks -triple i386-apple-darwin10 -emit-llvm -o - %s | FileCheck %s -// radar 7581175 -// XFAIL: * - -extern void dispatch_async (void (^)(void)); - -@interface Foo -@end - -@implementation Foo -- (void)dealloc { - dispatch_async(^{}); -} -@end - -// CHECK: self.addr -// CHECK: self.addr |