xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/930513-1.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
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