921e5a0eb4
From-SVN: r14840
14 lines
164 B
C
14 lines
164 B
C
struct foo
|
|
{
|
|
unsigned b31 : 1;
|
|
unsigned b30 : 1;
|
|
unsigned b29 : 1;
|
|
unsigned b28 : 1;
|
|
unsigned rest : 28;
|
|
};
|
|
foo(a)
|
|
struct foo a;
|
|
{
|
|
return a.b30;
|
|
}
|