diff options
| author | Dale Johannesen <dalej@apple.com> | 2009-06-12 18:41:53 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2009-06-12 18:41:53 +0000 |
| commit | 9ebb4d2127ccc60484f9050aebc5c6b05bd20d0f (patch) | |
| tree | 6d0c766943f8d94a57ed9f98a4ec3fa2ef7f5c96 /llvm/test | |
| parent | 181aa4a2505581079767076283bd8810ead46407 (diff) | |
| download | bcm5719-llvm-9ebb4d2127ccc60484f9050aebc5c6b05bd20d0f.tar.gz bcm5719-llvm-9ebb4d2127ccc60484f9050aebc5c6b05bd20d0f.zip | |
Testcase for llvm-gcc patch 73238.
llvm-svn: 73239
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/FrontendC/pr3518.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/llvm/test/FrontendC/pr3518.c b/llvm/test/FrontendC/pr3518.c new file mode 100644 index 00000000000..4c193c7739b --- /dev/null +++ b/llvm/test/FrontendC/pr3518.c @@ -0,0 +1,24 @@ +// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep {= internal global} | count 4 +// PR 3518 +// Some of the objects were coming out as unintialized (external) before 3518 +// was fixed. Internal names are different between llvm-gcc and clang so they +// are not tested. + +extern void abort (void); + +struct A { int i; int j; }; +struct B { struct A *a; struct A *b; }; +struct C { struct B *c; struct A *d; }; +struct C e = { &(struct B) { &(struct A) { 1, 2 }, &(struct A) { 3, 4 } }, &(struct A) { 5, 6 } }; + +int +main (void) +{ + if (e.c->a->i != 1 || e.c->a->j != 2) + abort (); + if (e.c->b->i != 3 || e.c->b->j != 4) + abort (); + if (e.d->i != 5 || e.d->j != 6) + abort (); + return 0; +} |

