blob: 472b591585369d10ea392343d4afb0516f91d83e [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner2bc99882003-11-27 21:25:07 +00003struct i387_soft_struct {
4 long cwd;
5 long twd;
6 long fip;
7};
8union i387_union {
9 struct i387_soft_struct soft;
10};
11struct thread_struct {
12 union i387_union i387;
13};
14void _init_task_union(void) {
15 struct thread_struct thread = (struct thread_struct) { {{0}} };
16}