summaryrefslogtreecommitdiff
path: root/test/CodeGen/const-init.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-02-25 20:08:33 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-02-25 20:08:33 +0000
commite5731f81497d11f95027a500a3ee118f4fc9e1be (patch)
tree1b941443c359c5b65fd13e4e1d578c931b01f774 /test/CodeGen/const-init.c
parentac1afdc58e6ad5c969f45fd2ff6d140d3b4dd862 (diff)
downloadclang-e5731f81497d11f95027a500a3ee118f4fc9e1be.tar.gz
Allow constant initializers to reference their defining decl.
- PR3662. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/const-init.c')
-rw-r--r--test/CodeGen/const-init.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/const-init.c b/test/CodeGen/const-init.c
index f6199815ed..d88add36a9 100644
--- a/test/CodeGen/const-init.c
+++ b/test/CodeGen/const-init.c
@@ -85,4 +85,15 @@ void g18(void) {
static int *p[] = { &g19 };
}
+// RUN: grep '@g20.l0 = internal global .struct.g20_s1 <{ .struct.g20_s0\* null, .struct.g20_s0\*\* getelementptr (.struct.g20_s1\* @g20.l0, i32 0, i32 0) }>' %t &&
+
+struct g20_s0;
+struct g20_s1 {
+ struct g20_s0 *f0, **f1;
+};
+void *g20(void) {
+ static struct g20_s1 l0 = { ((void*) 0), &l0.f0 };
+ return l0.f1;
+}
+
// RUN: true