aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendObjC
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-11-26 02:21:12 +0000
committerBill Wendling <isanbard@gmail.com>2008-11-26 02:21:12 +0000
commitad2b173f9bef5ba304c9e3fc906f6a335e366bd2 (patch)
tree6a71357c69eba9d2391108a34a3ed22f409ca1af /test/FrontendObjC
parent653b2581df384f5442ef2438b11864576e6b549b (diff)
downloadexternal_llvm-ad2b173f9bef5ba304c9e3fc906f6a335e366bd2.zip
external_llvm-ad2b173f9bef5ba304c9e3fc906f6a335e366bd2.tar.gz
external_llvm-ad2b173f9bef5ba304c9e3fc906f6a335e366bd2.tar.bz2
Add test for rdar://6394879.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60079 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendObjC')
-rw-r--r--test/FrontendObjC/2008-11-25-Blocks.m17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/FrontendObjC/2008-11-25-Blocks.m b/test/FrontendObjC/2008-11-25-Blocks.m
new file mode 100644
index 0000000..258d70a
--- /dev/null
+++ b/test/FrontendObjC/2008-11-25-Blocks.m
@@ -0,0 +1,17 @@
+// RUN: %llvmgcc -c %s -o /dev/null
+// rdar://6394879
+
+@interface bork
+- (id)B:(void (^)())blk;
+- (void)C;
+@end
+@implementation bork
+- (id)B:(void (^)())blk {
+ __attribute__((__blocks__(byref))) bork* new = ((void *)0);
+ blk();
+}
+- (void)C {
+ __attribute__((__blocks__(byref))) id var;
+ [self B:^() {}];
+}
+@end