2011-10-02 09:16:38 +08:00
|
|
|
// RUN: %clang_cc1 -arcmt-check -verify -triple x86_64-apple-darwin10 %s
|
2011-06-16 07:25:17 +08:00
|
|
|
|
2011-07-27 13:28:18 +08:00
|
|
|
#include "Common.h"
|
|
|
|
|
|
|
|
@interface NSString : NSObject
|
|
|
|
-(id)string;
|
|
|
|
-(id)newString;
|
|
|
|
@end
|
2011-06-16 07:25:17 +08:00
|
|
|
|
2011-07-27 13:28:18 +08:00
|
|
|
typedef const struct __CFString * CFStringRef;
|
2011-06-16 07:25:17 +08:00
|
|
|
|
|
|
|
void f(BOOL b) {
|
|
|
|
CFStringRef cfstr;
|
|
|
|
NSString *str = (NSString *)cfstr; // expected-error {{cast of C pointer type 'CFStringRef' (aka 'const struct __CFString *') to Objective-C pointer type 'NSString *' requires a bridged cast}} \
|
|
|
|
// expected-note{{use __bridge to convert directly (no change in ownership)}} \
|
|
|
|
// expected-note{{use __bridge_transfer to transfer ownership of a +1 'CFStringRef' (aka 'const struct __CFString *') into ARC}}
|
2011-10-18 02:40:02 +08:00
|
|
|
void *vp = str; // expected-error {{requires a bridged cast}} expected-note {{use __bridge}} expected-note {{use __bridge}}
|
2011-06-16 07:25:17 +08:00
|
|
|
}
|
2011-07-27 13:28:18 +08:00
|
|
|
|
|
|
|
void f2(NSString *s) {
|
|
|
|
CFStringRef ref;
|
|
|
|
ref = [(CFStringRef)[s string] retain]; // expected-error {{cast of Objective-C pointer type 'id' to C pointer type 'CFStringRef' (aka 'const struct __CFString *') requires a bridged cast}} \
|
|
|
|
// expected-error {{ bad receiver type 'CFStringRef' (aka 'const struct __CFString *')}} \
|
|
|
|
// expected-note{{use __bridge to convert directly (no change in ownership)}} \
|
|
|
|
// expected-note{{use __bridge_retained to make an ARC object available as a +1 'CFStringRef' (aka 'const struct __CFString *')}}
|
|
|
|
}
|
|
|
|
|
|
|
|
CFStringRef f3() {
|
|
|
|
return (CFStringRef)[[[NSString alloc] init] autorelease]; // expected-error {{it is not safe to cast to 'CFStringRef' the result of 'autorelease' message; a __bridge cast may result in a pointer to a destroyed object and a __bridge_retained may leak the object}} \
|
|
|
|
// expected-note {{remove the cast and change return type of function to 'NSString *' to have the object automatically autoreleased}}
|
|
|
|
}
|