8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/hibug.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

16 lines
120 B
C

struct foo
{
short d;
int a;
};
int
bar (d, u)
short d;
struct foo u;
{
u.d = d;
return (int) (&u);
}