diff options
Diffstat (limited to 'test/FrontendC/2003-01-30-UnionInit.c')
-rw-r--r-- | test/FrontendC/2003-01-30-UnionInit.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/FrontendC/2003-01-30-UnionInit.c b/test/FrontendC/2003-01-30-UnionInit.c deleted file mode 100644 index 5769584..0000000 --- a/test/FrontendC/2003-01-30-UnionInit.c +++ /dev/null @@ -1,8 +0,0 @@ -// RUN: %llvmgcc -S %s -o /dev/null - -union foo { - struct { char A, B; } X; - int C; -}; - -union foo V = { {1, 2} }; |