diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
commit | 06d4ba388873e6d1cfa9cd715a8935ecc8cd2097 (patch) | |
tree | 3eb853da77d46cc77c4b017525a422f9ddb1385b /test/CodeGenObjC/undefined-protocol2.m | |
parent | 30d791273d07fac9c0c1641a0731191bca6e8606 (diff) | |
download | src-06d4ba388873e6d1cfa9cd715a8935ecc8cd2097.tar.gz src-06d4ba388873e6d1cfa9cd715a8935ecc8cd2097.zip |
Notes
Diffstat (limited to 'test/CodeGenObjC/undefined-protocol2.m')
-rw-r--r-- | test/CodeGenObjC/undefined-protocol2.m | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CodeGenObjC/undefined-protocol2.m b/test/CodeGenObjC/undefined-protocol2.m new file mode 100644 index 000000000000..f171523b042c --- /dev/null +++ b/test/CodeGenObjC/undefined-protocol2.m @@ -0,0 +1,17 @@ +// RUN: %clang_cc1 -triple x86_64-apple-macosx -emit-llvm %s -o - | FileCheck %s + +// Test that we produce a declaration for the protocol. It must be matched +// by a definition in another TU, so external is the correct linkage +// (not extern_weak). +// CHECK: @"\01l_OBJC_PROTOCOL_$_p1" = external global + +@interface NSObject +@end + +@protocol p1; + +@interface I1 : NSObject <p1> +@end + +@implementation I1 +@end |