[ELF] Avoid make in elf::writeARMCmseImportLib
[llvm-project.git] / clang / test / ARCMT / GC-no-arc-runtime.m.result
blobc338bdb2ed471e3f1c2252d77ac01a7649d4dab7
1 // RUN: %clang_cc1 -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-runtime-has-weak -fobjc-arc -x objective-c %s.result
2 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective-c %s > %t
3 // RUN: diff %t %s.result
4 // RUN: arcmt-test --args -triple x86_64-apple-macosx10.6 -fsyntax-only -fobjc-gc-only -x objective-c++ %s > %t
5 // RUN: diff %t %s.result
7 #include "Common.h"
8 #include "GC.h"
10 void test1(CFTypeRef *cft) {
11   id x = CFBridgingRelease(cft);
14 @interface I1
15 @end
17 @implementation I1
18 -(void)dealloc {
19   // dealloc
20   test1(0);
23 @end
25 @interface I2
26 @property (strong) id prop;
27 @end
29 @implementation I2
30 @synthesize prop;
32 -(void)dealloc {
33   // finalize
34   test1(0);
36 @end
38 __attribute__((objc_arc_weak_reference_unavailable))
39 @interface QQ {
40   __unsafe_unretained id s;
41   __unsafe_unretained QQ *q;
43 @end
45 @interface I3
46 @property (unsafe_unretained) I3 * pw1, * pw2;
47 @property (strong) I3 * ps;
48 @property (assign) I3 * pds;
49 @end
51 @interface I4Impl {
52   I4Impl *__strong pds2;
54 @property (unsafe_unretained) I4Impl * pw1, * pw2;
55 @property (strong) I4Impl * ps;
56 @property (strong) I4Impl * pds;
57 @property (strong) I4Impl * pds2;
58 @end
60 @implementation I4Impl
61 @synthesize pw1, pw2, ps, pds, pds2;
63 -(void)test1:(CFTypeRef *)cft {
64   id x = CFBridgingRelease(cft);
66 @end
68 @interface I5 {
69   __unsafe_unretained id prop;
71 @property (unsafe_unretained, readonly)  id prop;
72 @end