blob: e839c811dab69b38ce46f4f940b94e7a2edaf399 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// RUN: rm -rf %t.cache
// RUN: c-index-test -write-pch %t.h.pch %s -target x86_64-apple-macosx10.7 -fobjc-arc -fmodules-cache-path=%t.cache -fmodules -F %S/../Modules/Inputs -Xclang -fdisable-module-hash
// RUN: %clang -fsyntax-only %s -target x86_64-apple-macosx10.7 -include %t.h -fobjc-arc -fmodules-cache-path=%t.cache -fmodules -F %S/../Modules/Inputs \
// RUN: -Xclang -fdisable-module-hash -Xclang -detailed-preprocessing-record -Xclang -verify
// expected-no-diagnostics
#ifndef PCH_HEADER
#define PCH_HEADER
#include <Module/Module.h>
@interface Module(PCHCat)
-(id)PCH_meth;
@end
#else
void foo(Module *m) {
[m PCH_meth];
}
#endif
|