23 lines · plain
1// RUN: cd %S2 3// RUN: %clang_cc1 -emit-pch -x objective-c-header %s -o %t_c00.pch -fno-pch-timestamp4// RUN: %clang_cc1 -emit-pch -x objective-c-header %s -o %t_c00_1.pch -fno-pch-timestamp5// RUN: diff %t_c00.pch %t_c00_1.pch6 7// RUN: %clang_cc1 -emit-pch -x objective-c-header %s -o %t_c00_2.pch -fno-pch-timestamp8// RUN: diff %t_c00.pch %t_c00_2.pch9 10// RUN: %clang_cc1 -emit-pch -x objective-c-header %s -o %t_c00_3.pch -fno-pch-timestamp11// RUN: diff %t_c00.pch %t_c00_3.pch12 13// RUN: %clang_cc1 -emit-pch -x objective-c-header %s -o %t_c00_4.pch -fno-pch-timestamp14// RUN: diff %t_c00.pch %t_c00_4.pch15 16// RUN: %clang_cc1 -emit-pch -x objective-c-header %s -o %t_c00_5.pch -fno-pch-timestamp17// RUN: diff %t_c00.pch %t_c00_5.pch18 19@protocol NSObject20- (void)doesNotRecognizeSelector:(SEL)aSelector;21- (id)forwardingTargetForSelector:(SEL)aSelector;22@end23