Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Rewriter / rewrite-forward-class.m
blob0ec99c505834b7aa9d9ff647e930e8ac950ea008
1 // RUN: %clang_cc1 -x objective-c -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -fblocks -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
4 @class XX;
5 @class YY, ZZ, QQ;
6 @class ISyncClient, SMSession, ISyncManager, ISyncSession, SMDataclassInfo, SMClientInfo,
7     DMCConfiguration, DMCStatusEntry;
9 @interface QQ
11 @end
13 @interface SMDataclassInfo : QQ
14 - (XX*) Meth;
15 - (DMCStatusEntry*)Meth2;
16 @end
18 @implementation SMDataclassInfo
19 - (XX*) Meth { return 0; }
20 - (DMCStatusEntry*)Meth2 { return 0; }
21 @end
23 @interface YY 
25   ISyncClient *p1;
26   ISyncSession *p2;
28 @property (copy) ISyncClient *p1;
29 @end
31 @implementation YY
32 @synthesize p1;
33 @end