2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / hibug.c
blobad5c826799425315ea4cd54716b3731777028b55
1 struct foo
3 short d;
4 int a;
5 };
7 int
8 bar (d, u)
9 short d;
10 struct foo u;
13 u.d = d;
14 return (int) (&u);