diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-31 21:19:45 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-10-31 21:19:45 +0000 |
commit | a6556f7295de22fd600d566a057e127f6147287c (patch) | |
tree | 92564167c6bafeeb84e8044f1f59e047ec8febf9 /clang/test/ARCMT | |
parent | d4a013600232120cb157df89a1993183b16c8d0c (diff) | |
download | bcm5719-llvm-a6556f7295de22fd600d566a057e127f6147287c.tar.gz bcm5719-llvm-a6556f7295de22fd600d566a057e127f6147287c.zip |
Objective-C SDK modernization tool. Use its own option
,-objcmt-migrate-property-dot-syntax, when migarting to use
property-dot syntax in place of messaging expression.
rdar://18839124
llvm-svn: 221001
Diffstat (limited to 'clang/test/ARCMT')
-rw-r--r-- | clang/test/ARCMT/objcmt-property-dot-syntax.m | 2 | ||||
-rw-r--r-- | clang/test/ARCMT/objcmt-property-dot-syntax.m.result | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/ARCMT/objcmt-property-dot-syntax.m b/clang/test/ARCMT/objcmt-property-dot-syntax.m index ce6dc162ea1..42aade5aca2 100644 --- a/clang/test/ARCMT/objcmt-property-dot-syntax.m +++ b/clang/test/ARCMT/objcmt-property-dot-syntax.m @@ -1,5 +1,5 @@ // RUN: rm -rf %t -// RUN: %clang_cc1 -objcmt-migrate-property -mt-migrate-directory %t %s -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11 +// RUN: %clang_cc1 -objcmt-migrate-property-dot-syntax -mt-migrate-directory %t %s -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11 // RUN: c-arcmt-test -mt-migrate-directory %t | arcmt-test -verify-transformed-files %s.result // RUN: %clang_cc1 -fblocks -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc %s.result diff --git a/clang/test/ARCMT/objcmt-property-dot-syntax.m.result b/clang/test/ARCMT/objcmt-property-dot-syntax.m.result index 0532c6f67cf..88006e9fc59 100644 --- a/clang/test/ARCMT/objcmt-property-dot-syntax.m.result +++ b/clang/test/ARCMT/objcmt-property-dot-syntax.m.result @@ -1,5 +1,5 @@ // RUN: rm -rf %t -// RUN: %clang_cc1 -objcmt-migrate-property -mt-migrate-directory %t %s -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11 +// RUN: %clang_cc1 -objcmt-migrate-property-dot-syntax -mt-migrate-directory %t %s -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11 // RUN: c-arcmt-test -mt-migrate-directory %t | arcmt-test -verify-transformed-files %s.result // RUN: %clang_cc1 -fblocks -triple x86_64-apple-darwin10 -fsyntax-only -x objective-c -fobjc-runtime-has-weak -fobjc-arc %s.result @@ -13,7 +13,7 @@ } @property int count; @property (copy) P* PropertyReturnsPObj; -@property (nonatomic, readonly, strong) P *MethodReturnsPObj; +- (P*) MethodReturnsPObj; @end P* fun(); |