mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-15 16:07:49 +00:00
6191c7b9b8
llvm-svn: 10246
15 lines
263 B
C
15 lines
263 B
C
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}} };
|
|
}
|