aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20020910-1.c
blob: 31398ea3d4520fb478c84a57e4f4e277f9bb2aa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
unsigned int  x0  = 0;

typedef struct {
  unsigned int  field1 : 20;
  unsigned int  field2 : 12;
} XX;

static XX yy;

static void foo (void)
{
  yy.field1 = (unsigned int ) (&x0);
}