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