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 | 40efb08d87a6ac71f8cf2c7dfadc11e4d048ec26 (patch) | |
tree | c33186c83df5346478617d2171e1ad16b42eee78 | |
parent | 01cc43715937d6a6b316aa70362bd31daef6ccea (diff) | |
download | bcm5719-llvm-40efb08d87a6ac71f8cf2c7dfadc11e4d048ec26.tar.gz bcm5719-llvm-40efb08d87a6ac71f8cf2c7dfadc11e4d048ec26.zip |
Remove this test for now.
llvm-svn: 96651
-rw-r--r-- | clang/test/CodeGenObjC/blocks-5.m | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/clang/test/CodeGenObjC/blocks-5.m b/clang/test/CodeGenObjC/blocks-5.m deleted file mode 100644 index 2f27d75afdf..00000000000 --- a/clang/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 |