summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/extern-c.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-05-16 21:02:39 +0000
committerAnders Carlsson <andersca@mac.com>2009-05-16 21:02:39 +0000
commit2928c2107f2e0007f35fe1c224aab63535f1403d (patch)
treecfc71c10fcdf57021774e79f7e2f16169bd69746 /test/CodeGenCXX/extern-c.cpp
parent4ef2770ee522048a19311d13ccd3b9605297ec58 (diff)
extern "C" should preserve the 'extern' qualifier for VarDecls. Fixes 6853728.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71957 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/extern-c.cpp')
-rw-r--r--test/CodeGenCXX/extern-c.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGenCXX/extern-c.cpp b/test/CodeGenCXX/extern-c.cpp
new file mode 100644
index 0000000000..6353293233
--- /dev/null
+++ b/test/CodeGenCXX/extern-c.cpp
@@ -0,0 +1,13 @@
+// RUN: clang-cc -emit-llvm %s -o %t &&
+namespace foo {
+
+// RUN: not grep "@a = global i32" %t &&
+extern "C" int a;
+
+// RUN: not grep "@_ZN3foo1bE = global i32" %t &&
+extern int b;
+
+// RUN: grep "@_ZN3foo1cE = global i32" %t | count 1
+int c = 5;
+
+}