xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/930513-1.c (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
1 struct s {
2   int f1 : 26;
3   int f2 : 8;
4 };
5 
6 f (struct s *x)
7 {
8   return x->f2++ == 0;
9 }
10