diff --git a/clang/lib/ARCMigrate/ObjCMT.cpp b/clang/lib/ARCMigrate/ObjCMT.cpp index b859c0b19d68..b51f8bb49384 100644 --- a/clang/lib/ARCMigrate/ObjCMT.cpp +++ b/clang/lib/ARCMigrate/ObjCMT.cpp @@ -741,8 +741,11 @@ bool ObjCMigrateASTConsumer::migrateProperty(ASTContext &Ctx, // try a different naming convention for getter: isXxxxx StringRef getterNameString = getterName->getName(); bool IsPrefix = getterNameString.startswith("is"); - if ((IsPrefix && !GRT->isObjCRetainableType()) || - getterNameString.startswith("get")) { + // Note that we don't want to change an isXXX method of retainable object + // type to property (readonly or otherwise). + if (IsPrefix && GRT->isObjCRetainableType()) + return false; + if (IsPrefix || getterNameString.startswith("get")) { LengthOfPrefix = (IsPrefix ? 2 : 3); const char *CGetterName = getterNameString.data() + LengthOfPrefix; // Make sure that first character after "is" or "get" prefix can @@ -759,6 +762,7 @@ bool ObjCMigrateASTConsumer::migrateProperty(ASTContext &Ctx, } } } + if (SetterMethod) { // Is this a valid setter, matching the target getter? QualType SRT = SetterMethod->getResultType(); diff --git a/clang/test/ARCMT/objcmt-property.m.result b/clang/test/ARCMT/objcmt-property.m.result index eff89294cf3b..355a8c124cca 100644 --- a/clang/test/ARCMT/objcmt-property.m.result +++ b/clang/test/ARCMT/objcmt-property.m.result @@ -86,7 +86,7 @@ typedef char BOOL; @property(nonatomic, getter=isContinuous) BOOL continuous; -@property(nonatomic, readonly) id isAnObject; +- (id) isAnObject; - (void)setAnObject : (id) object; @property(nonatomic, getter=isinValid, readonly) BOOL inValid; @@ -138,7 +138,7 @@ typedef char BOOL; @property(nonatomic, getter=isContinuous) BOOL continuous; -@property(nonatomic, readonly) id isAnObject; +- (id) isAnObject; - (void)setAnObject : (id) object; @property(nonatomic, getter=isinValid, readonly) BOOL inValid;