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