summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr90733.c
blob: 7d2a7fb559ad9dc698f1731e12bddeb51bb2f925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* PR debug/90733 */
/* { dg-do compile } */
/* { dg-options "-g -O2 -w" } */

struct S { unsigned a : 1; };
union U { struct S b; _Complex unsigned c; };

union U
foo (union U d)
{
  union U e = d;
  return e;
}

int
bar (void)
{
  union U x, y;
  x.c = x.b.a;
  y = foo (x);
  return x.c != y.c;
}