blob: 33a9426a972463a47400e981b21e7555af368529 [file] [log] [blame]
Chris Lattner1f801152003-11-27 20:47:16 +00001struct i387_soft_struct {
2 long cwd;
3};
4union i387_union {
5 struct i387_soft_struct soft;
6};
7struct thread_struct {
8 union i387_union i387;
9};
10void _init_task_union(void) {
11 struct thread_struct thread = (struct thread_struct) { {{0}} };
12}