summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pr37248-2.c
blob: 307f346815d7d85fe837c1e8478392b137774c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* PR middle-end/37248 */
/* { dg-do compile { target { ! default_packed } } } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

struct S
{
  unsigned char a : 1;
  unsigned char b : 1;
  unsigned char c : 1;
  unsigned int d : 26;
  unsigned char e : 1;
  unsigned char f : 1;
  unsigned char g : 1;
} s;

int
foo (struct S x)
{
  return x.a && x.g && x.b && x.f && x.c && x.e;
}

/* { dg-final { scan-tree-dump "& (3758096391|0x0e0000007);" "optimized" } } */
/* { dg-final { scan-tree-dump "== (3758096391|0x0e0000007);" "optimized" } } */