Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / Rewriter / rewrite-user-defined-accessors.mm
blob74f092cbd42167216e126df497369843aff33740
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 -Did="void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
4 @interface Foo {
5         Foo *foo;
8 @property (retain, nonatomic) Foo *foo;
10 @end
12 @implementation Foo
14 - (Foo *)foo {
15     if (!foo) {
16         foo = 0;
17     }
18     return foo;
22 - (void) setFoo : (Foo *) arg {
23   foo = arg;
26 @synthesize foo;
28 @end