
This just tweaks the fix from r224892 (which handled PCHs) to work with modules, where we will serialize each method individually and hence the hasMoreThanOneDecl bit needs to be updated as we add the methods. llvm-svn: 225659
7 lines
97 B
Objective-C
7 lines
97 B
Objective-C
@interface A
|
|
-(void)method1;
|
|
@end
|
|
@interface B
|
|
-(void)method1 __attribute__((unavailable));
|
|
@end
|