diff options
Diffstat (limited to 'test/FrontendC/2003-11-27-UnionCtorInitialization.c')
-rw-r--r-- | test/FrontendC/2003-11-27-UnionCtorInitialization.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/FrontendC/2003-11-27-UnionCtorInitialization.c b/test/FrontendC/2003-11-27-UnionCtorInitialization.c deleted file mode 100644 index e3ae1e9..0000000 --- a/test/FrontendC/2003-11-27-UnionCtorInitialization.c +++ /dev/null @@ -1,16 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null - -struct i387_soft_struct { - long cwd; - long twd; - long fip; -}; -union i387_union { - struct i387_soft_struct soft; -}; -struct thread_struct { - union i387_union i387; -}; -void _init_task_union(void) { - struct thread_struct thread = (struct thread_struct) { {{0}} }; -} |