diff --git a/clang/lib/AST/ODRHash.cpp b/clang/lib/AST/ODRHash.cpp index 3ea023d3cee66..507fb0b49f8ad 100644 --- a/clang/lib/AST/ODRHash.cpp +++ b/clang/lib/AST/ODRHash.cpp @@ -373,7 +373,6 @@ class ODRDeclVisitor : public ConstDeclVisitor { void VisitObjCMethodDecl(const ObjCMethodDecl *Method) { ID.AddInteger(Method->getDeclKind()); Hash.AddBoolean(Method->isInstanceMethod()); // false if class method - Hash.AddBoolean(Method->isPropertyAccessor()); Hash.AddBoolean(Method->isVariadic()); Hash.AddBoolean(Method->isSynthesizedAccessorStub()); Hash.AddBoolean(Method->isDefined()); diff --git a/clang/test/Modules/compare-objc-nonisolated-methods.m b/clang/test/Modules/compare-objc-nonisolated-methods.m index a60114148420b..41e861547af42 100644 --- a/clang/test/Modules/compare-objc-nonisolated-methods.m +++ b/clang/test/Modules/compare-objc-nonisolated-methods.m @@ -5,12 +5,17 @@ // is not an error because it depends on the surrounding code and not on the method itself. // RUN: %clang_cc1 -fsyntax-only -verify -I%t/include -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache -fmodule-name=Override %t/test-overriding.m +// Test that different values of `ObjCMethodDecl::isPropertyAccessor` in different modules +// is not an error because it depends on the surrounding code and not on the method itself. +// RUN: %clang_cc1 -fsyntax-only -verify -I%t/include -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache -fmodule-name=PropertyAccessor %t/test-property_accessor.m + //--- include/Common.h @interface NSObject @end //--- include/Indirection.h #import +#import //--- include/module.modulemap module Common { @@ -25,6 +30,10 @@ @interface NSObject header "Override.h" export * } +module PropertyAccessor { + header "PropertyAccessor.h" + export * +} //--- include/Override.h #import @@ -52,3 +61,31 @@ - (void)potentialOverride; void triggerOverrideCheck(SubClass *sc) { [sc potentialOverride]; } + +//--- include/PropertyAccessor.h +#import +@interface PropertySubClass: NSObject +- (int)potentialProperty; +- (void)setPotentialProperty:(int)p; +@end + +//--- PropertyAccessor_Internal.h +#import +@interface PropertySubClass() +@property int potentialProperty; +@end + +//--- test-property_accessor.m +//expected-no-diagnostics +// Get a version of `PropertySubClass` where `-[PropertySubClass potentialProperty]` +// is a property accessor. +#import "PropertyAccessor_Internal.h" + +// Get a version of `PropertySubClass` where `-[PropertySubClass potentialProperty]` +// is not a property accessor because module "PropertyAccessor" doesn't know about PropertyAccessor_Internal.h. +#import + +void triggerPropertyAccessorCheck(PropertySubClass *x) { + int tmp = [x potentialProperty]; + [x setPotentialProperty: tmp]; +}