1 struct s { 2 int f1 : 26; 3 int f2 : 8; 4 }; 5 f(struct s * x)6 f (struct s *x) 7 { 8 return x->f2++ == 0; 9 } 10