diff options
Diffstat (limited to 'test/PCH/pch-dir.c')
-rw-r--r-- | test/PCH/pch-dir.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/PCH/pch-dir.c b/test/PCH/pch-dir.c new file mode 100644 index 000000000000..ae841ce0a7a4 --- /dev/null +++ b/test/PCH/pch-dir.c @@ -0,0 +1,28 @@ +// RUN: mkdir -p %t.h.gch +// RUN: %clang -x c-header %S/pch-dir.h -DFOO=foo -o %t.h.gch/c.gch +// RUN: %clang -x c-header %S/pch-dir.h -DFOO=bar -o %t.h.gch/cbar.gch +// RUN: %clang -x c++-header -std=c++98 %S/pch-dir.h -o %t.h.gch/cpp.gch +// RUN: %clang -include %t.h -DFOO=foo -fsyntax-only %s -Xclang -print-stats 2> %t.clog +// RUN: FileCheck -check-prefix=C %s < %t.clog +// RUN: %clang -include %t.h -DFOO=bar -DBAR=bar -fsyntax-only %s -Xclang -ast-print > %t.cbarlog +// RUN: FileCheck -check-prefix=CBAR %s < %t.cbarlog +// RUN: %clang -x c++ -include %t.h -std=c++98 -fsyntax-only %s -Xclang -print-stats 2> %t.cpplog +// RUN: FileCheck -check-prefix=CPP %s < %t.cpplog + +// RUN: not %clang -x c++ -std=c++11 -include %t.h -fsyntax-only %s 2> %t.cpp11log +// RUN: FileCheck -check-prefix=CPP11 %s < %t.cpp11log + +// CHECK-CBAR: int bar +int FOO; + +int get() { +#ifdef __cplusplus + // CHECK-CPP: .h.gch{{[/\\]}}cpp.gch + return i; +#else + // CHECK-C: .h.gch{{[/\\]}}c.gch + return j; +#endif +} + +// CHECK-CPP11: no suitable precompiled header file found in directory |