summaryrefslogtreecommitdiff
path: root/clang/test/PCH/cxx-reference.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/PCH/cxx-reference.cpp')
-rw-r--r--clang/test/PCH/cxx-reference.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/PCH/cxx-reference.cpp b/clang/test/PCH/cxx-reference.cpp
new file mode 100644
index 0000000..a1a44e6
--- /dev/null
+++ b/clang/test/PCH/cxx-reference.cpp
@@ -0,0 +1,6 @@
+// Test this without pch.
+// RUN: %clang_cc1 -x c++ -std=c++11 -include %S/cxx-reference.h -fsyntax-only -emit-llvm -o - %s
+
+// Test with pch.
+// RUN: %clang_cc1 -x c++ -std=c++11 -emit-pch -o %t %S/cxx-reference.h
+// RUN: %clang_cc1 -x c++ -std=c++11 -include-pch %t -fsyntax-only -emit-llvm -o - %s