diff options
Diffstat (limited to 'llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c')
-rw-r--r-- | llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c b/llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c new file mode 100644 index 00000000000..90dbd37f0d6 --- /dev/null +++ b/llvm/test/FrontendC/2003-10-09-UnionInitializerBug.c @@ -0,0 +1,17 @@ +// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null + +struct Foo { + unsigned a; + unsigned b; + unsigned c; +}; + +struct Bar { + union { + void **a; + struct Foo b; + }u; +}; + +struct Bar test = {0}; + |