Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Rewriter / rewrite-forward-class.mm
blob616dd932635f6df2dc47969c5a6c17757c828d6c
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %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 extern "C" {
5 @class XX;
6 @class YY, ZZ, QQ;
7 @class ISyncClient, SMSession, ISyncManager, ISyncSession, SMDataclassInfo, SMClientInfo,
8     DMCConfiguration, DMCStatusEntry;
10 @interface QQ
12 @end
14 @interface SMDataclassInfo : QQ
15 - (XX*) Meth;
16 - (DMCStatusEntry*)Meth2;
17 @end
19 @implementation SMDataclassInfo
20 - (XX*) Meth { return 0; }
21 - (DMCStatusEntry*)Meth2 { return 0; }
22 @end
24 @interface YY 
26   ISyncClient *p1;
27   ISyncSession *p2;
29 @property (copy) ISyncClient *p1;
30 @end
32 @implementation YY
33 @synthesize p1;
34 @end
36 extern "C" {
37 @class CCC;
38 @class Protocol, P , Q;
39 int I,J,K;
44 @interface ISDPropertyChangeGroup
45 @end
47 @implementation ISDPropertyChangeGroup
48 @class ISDClientState;
49 - (id)lastModifiedGeneration : (ISDClientState *) obj
51   return obj ;
53 @end