1 struct tree_common
2 {
3   unsigned int code : 9;
4   unsigned int code2 : 7;
5 };
6 
7 static int
duplicate_decls(x)8 duplicate_decls (x)
9      register struct tree_common x;
10 {
11   return x.code2;
12 }
13