blob: 57e113a7cc29daea713e6ed9c09fa220f6873b57 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattner83bb2562003-10-10 04:05:29 +00003struct Foo {
4 unsigned a;
5 unsigned b;
6 unsigned c;
7};
8
9struct Bar {
10 union {
11 void **a;
12 struct Foo b;
13 }u;
14};
15
16struct Bar test = {0};
17