aboutsummaryrefslogtreecommitdiff
path: root/test/PCH/pragma-weak.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/PCH/pragma-weak.c')
-rw-r--r--test/PCH/pragma-weak.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/PCH/pragma-weak.c b/test/PCH/pragma-weak.c
new file mode 100644
index 000000000000..18b45c889d12
--- /dev/null
+++ b/test/PCH/pragma-weak.c
@@ -0,0 +1,10 @@
+// Test this without pch.
+// RUN: %clang_cc1 -include %S/pragma-weak.h %s -verify -emit-llvm -o - | FileCheck %s
+
+// Test with pch.
+// RUN: %clang_cc1 -x c-header -emit-pch -o %t %S/pragma-weak.h
+// RUN: %clang_cc1 -include-pch %t %s -verify -emit-llvm -o - | FileCheck %s
+
+// CHECK: @weakvar = weak global i32 0
+int weakvar;
+// expected-warning {{weak identifier 'undeclaredvar' never declared}}