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

16 lines
148 B
C

struct foo
{
unsigned j : 16;
unsigned i : 16;
};
struct foo
foo (a, b)
struct foo a;
int b;
{
a.j = 123;
a.i = b;
return a;
}