aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2006-03-03-MissingInitializer.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2006-03-03-MissingInitializer.c')
-rw-r--r--test/CodeGen/2006-03-03-MissingInitializer.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/2006-03-03-MissingInitializer.c b/test/CodeGen/2006-03-03-MissingInitializer.c
new file mode 100644
index 000000000000..d2317d3acc41
--- /dev/null
+++ b/test/CodeGen/2006-03-03-MissingInitializer.c
@@ -0,0 +1,10 @@
+// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
+
+struct X { int *XX; int Y;};
+
+void foo() {
+ // CHECK: @foo.nate = internal global i32 0
+ static int nate = 0;
+ struct X bob = { &nate, 14 };
+ bar(&bob);
+}