aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/931031-1.c
blob: 9015f54f7bfa51cf3cae0f2a17680c604d21e4e6 (plain)
1
2
3
4
5
6
7
8
9
struct s
{
  int pad:1, no:1;
};

f (struct s *b, int c)
{
  char d = b->no && c;
}