[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / pch-with-module.m
blob9acd9694830bd755fb508fc1abc2b3b995dcd13b
1 // REQUIRES: x86-registered-target
2 // RUN: rm -rf %t.cache
3 // RUN: rm -rf %t.h.pch
4 // 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
5 // 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 \
6 // RUN:      -Xclang -fdisable-module-hash -Xclang -detailed-preprocessing-record -Xclang -verify
8 // expected-no-diagnostics
10 #ifndef PCH_HEADER
11 #define PCH_HEADER
13 #include <Module/Module.h>
15 @interface Module(PCHCat)
16 -(id)PCH_meth;
17 @end
19 #else
21 void foo(Module *m) {
22   [m PCH_meth];
25 #endif