921e5a0eb4
From-SVN: r14840
13 lines
165 B
C
13 lines
165 B
C
struct tree_common
|
|
{
|
|
unsigned int code : 9;
|
|
unsigned int code2 : 7;
|
|
};
|
|
|
|
static int
|
|
duplicate_decls (x)
|
|
register struct tree_common x;
|
|
{
|
|
return x.code2;
|
|
}
|