blob: 827945c668cb3ecb8e89ef4de5966714734f6153 [file] [log] [blame]
John McCall2792fa52011-03-08 04:17:03 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify %s
Anders Carlsson6e14a8f2008-08-24 16:33:25 +00002static id __attribute((objc_gc(weak))) a;
3static id __attribute((objc_gc(strong))) b;
4
Aaron Ballman3cd6feb2013-07-30 01:31:03 +00005static id __attribute((objc_gc())) c; // expected-error{{'objc_gc' attribute requires a string}}
6static id __attribute((objc_gc(123))) d; // expected-error{{'objc_gc' attribute requires a string}}
Aaron Ballmanbaec7782013-07-23 19:30:11 +00007static id __attribute((objc_gc(foo, 456))) e; // expected-error{{'objc_gc' attribute takes one argument}}
Anders Carlsson6e14a8f2008-08-24 16:33:25 +00008static id __attribute((objc_gc(hello))) f; // expected-warning{{'objc_gc' attribute argument not supported: 'hello'}}
John McCall2792fa52011-03-08 04:17:03 +00009
10static int __attribute__((objc_gc(weak))) g; // expected-warning {{'objc_gc' only applies to pointer types; type here is 'int'}}
11
12static __weak int h; // expected-warning {{'__weak' only applies to pointer types; type here is 'int'}}
John McCall834e3f62011-03-08 07:59:04 +000013
14// TODO: it would be great if this reported as __weak
15#define WEAK __weak
16static WEAK int h; // expected-warning {{'objc_gc' only applies to pointer types; type here is 'int'}}
17
18/* expected-warning {{'__weak' only applies to pointer types; type here is 'int'}}*/ static __we\
19ak int i;
John McCall22348732011-03-26 02:56:45 +000020
21// rdar://problem/9126213
22void test2(id __attribute((objc_gc(strong))) *strong,
23 id __attribute((objc_gc(weak))) *weak) {
24 void *opaque;
25 opaque = strong;
26 strong = opaque;
27
28 opaque = weak;
29 weak = opaque;
30}