aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/930513-1.c
blob: 2e106ae43a94fa5ce14e195b5eed4b218fc115d9 (plain)
1
2
3
4
5
6
7
8
9
struct s {
  int f1 : 26;
  int f2 : 8;
};

f (struct s *x)
{
  return x->f2++ == 0;
}