r194645 - Use a more realistic NS class names in
Fariborz Jahanian
fjahanian at apple.com
Wed Nov 13 17:00:26 PST 2013
Author: fjahanian
Date: Wed Nov 13 19:00:26 2013
New Revision: 194645
URL: http://llvm.org/viewvc/llvm-project?rev=194645&view=rev
Log:
Use a more realistic NS class names in
objc_bridge attributes in my previous test.
Per Jordan's comment.
Modified:
cfe/trunk/test/SemaObjC/objcbridge-attribute.m
Modified: cfe/trunk/test/SemaObjC/objcbridge-attribute.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/objcbridge-attribute.m?rev=194645&r1=194644&r2=194645&view=diff
==============================================================================
--- cfe/trunk/test/SemaObjC/objcbridge-attribute.m (original)
+++ cfe/trunk/test/SemaObjC/objcbridge-attribute.m Wed Nov 13 19:00:26 2013
@@ -1,25 +1,25 @@
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
// rdar://15454846
-typedef struct __CFColor * __attribute__ ((objc_bridge(NSError))) CFColorRef;
+typedef struct __CFErrorRef * __attribute__ ((objc_bridge(NSError))) CFErrorRef;
typedef struct __CFMyColor * __attribute__((objc_bridge(12))) CFMyColorRef; // expected-error {{parameter of 'objc_bridge' attribute must be a single name of an Objective-C class}}
typedef struct __CFArray * __attribute__ ((objc_bridge)) CFArrayRef; // expected-error {{parameter of 'objc_bridge' attribute must be a single name of an Objective-C class}}
-typedef void * __attribute__ ((objc_bridge(NSString))) CFRef;
+typedef void * __attribute__ ((objc_bridge(NSURL))) CFURLRef;
-typedef void * CFTypeRef __attribute__ ((objc_bridge(NSError)));
+typedef void * CFStringRef __attribute__ ((objc_bridge(NSString)));
-typedef struct __CFLocale * __attribute__((objc_bridge(NSString, NSError))) CFLocaleRef;// expected-error {{use of undeclared identifier 'NSError'}}
+typedef struct __CFLocale * __attribute__((objc_bridge(NSLocale, NSError))) CFLocaleRef;// expected-error {{use of undeclared identifier 'NSError'}}
-typedef struct __CFData __attribute__((objc_bridge(NSError))) CFDataRef; // expected-error {{'objc_bridge' attribute must be applied to a pointer type}}
+typedef struct __CFData __attribute__((objc_bridge(NSData))) CFDataRef; // expected-error {{'objc_bridge' attribute must be applied to a pointer type}}
-typedef struct __attribute__((objc_bridge(NSError))) __CFDictionary * CFDictionaryRef; // expected-error {{'objc_bridge' attribute must be put on a typedef only}}
+typedef struct __attribute__((objc_bridge(NSDictionary))) __CFDictionary * CFDictionaryRef; // expected-error {{'objc_bridge' attribute must be put on a typedef only}}
-typedef struct __CFObject * CFObjectRef __attribute__((objc_bridge(NSError)));
+typedef struct __CFSetRef * CFSetRef __attribute__((objc_bridge(NSSet)));
-typedef union __CFUColor * __attribute__((objc_bridge(NSError))) CFUColorRef; // expected-error {{'objc_bridge' attribute only applies to structs}}
+typedef union __CFUColor * __attribute__((objc_bridge(NSUColor))) CFUColorRef; // expected-error {{'objc_bridge' attribute only applies to structs}}
@interface I
{
More information about the cfe-commits
mailing list