summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2012-04-14 17:13:08 +0000
committerFariborz Jahanian <fjahanian@apple.com>2012-04-14 17:13:08 +0000
commit8590d86ea35d0dd04711edd6b8dc57fa9a528305 (patch)
tree3af79a0ec7d716bc4c9b1b17c189b42fbdbe55f3 /test
parentf4dd85835bc79aaa0ebdc08244ee0fc7f687285c (diff)
objective-c modern translator: Make metadata
definition for protocols static. // rdar://11248048 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154753 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Rewriter/rewrite-modern-protocol-1.mm14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Rewriter/rewrite-modern-protocol-1.mm b/test/Rewriter/rewrite-modern-protocol-1.mm
new file mode 100644
index 0000000000..7b737fe61d
--- /dev/null
+++ b/test/Rewriter/rewrite-modern-protocol-1.mm
@@ -0,0 +1,14 @@
+// RUN: %clang_cc1 -E %s -o %t.mm
+// RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %t.mm -o - | FileCheck %s
+// rdar://11248048
+
+@protocol NSCopying @end
+
+@interface INTF<NSCopying>
+@end
+
+@implementation INTF @end
+
+// CHECK: static struct _protocol_t _OBJC_PROTOCOL_NSCopying
+// CHECK: static struct _protocol_t *_OBJC_LABEL_PROTOCOL_$_NSCopying = &_OBJC_PROTOCOL_NSCopying;
+