diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-02-22 21:13:49 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-02-22 21:13:49 +0000 |
commit | 12932a04a8ed0224cc0d603f056831d7d2d990e3 (patch) | |
tree | 1254caa9cd6e7f5455a2fec3a53124514136798c | |
parent | cd376a1a75f2d4bcea25615d1700f457c39d810d (diff) |
more tests for modern objc translator.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151201 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Rewriter/rewrite-ivar-use.m | 5 | ||||
-rw-r--r-- | test/Rewriter/rewrite-modern-ivar-use.mm | 26 |
2 files changed, 30 insertions, 1 deletions
diff --git a/test/Rewriter/rewrite-ivar-use.m b/test/Rewriter/rewrite-ivar-use.m index 83edcfc7d1..53b07c434f 100644 --- a/test/Rewriter/rewrite-ivar-use.m +++ b/test/Rewriter/rewrite-ivar-use.m @@ -1,6 +1,9 @@ -// RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi -fms-extensions %s -o - +// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-fragile-abi %s -o %t-rw.cpp +// RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp // radar 7490331 +void *sel_registerName(const char *); + @interface Foo { int a; id b; diff --git a/test/Rewriter/rewrite-modern-ivar-use.mm b/test/Rewriter/rewrite-modern-ivar-use.mm new file mode 100644 index 0000000000..ec8d2c7d61 --- /dev/null +++ b/test/Rewriter/rewrite-modern-ivar-use.mm @@ -0,0 +1,26 @@ +// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw-modern.cpp +// RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw-modern.cpp + +void *sel_registerName(const char *); + +@interface Foo { + int a; + id b; +} +- (void)bar; +- (void)baz:(id)q; +@end + +@implementation Foo +// radar 7522803 +static void foo(id bar) { + int i = ((Foo *)bar)->a; +} + +- (void)bar { + a = 42; +} +- (void)baz:(id)q { +} +@end + |