1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

New testcase for PR158

llvm-svn: 10246
This commit is contained in:
Chris Lattner 2003-11-27 21:25:07 +00:00
parent bcf17b5e30
commit 6191c7b9b8

View File

@ -0,0 +1,14 @@
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}} };
}