diff options
-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 |