summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2008-07-21-mixed-var-fn-decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/2008-07-21-mixed-var-fn-decl.c')
-rw-r--r--clang/test/CodeGen/2008-07-21-mixed-var-fn-decl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2008-07-21-mixed-var-fn-decl.c b/clang/test/CodeGen/2008-07-21-mixed-var-fn-decl.c
new file mode 100644
index 0000000..ac13260
--- /dev/null
+++ b/clang/test/CodeGen/2008-07-21-mixed-var-fn-decl.c
@@ -0,0 +1,8 @@
+// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
+
+int g0, f0();
+int f1(), g1;
+
+// CHECK: @g0 = common global i32 0, align 4
+// CHECK: @g1 = common global i32 0, align 4
+