aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20191015-2.c
blob: 13a2ee7c3dc788ca7656b223cead8ba357f751ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
typedef unsigned uint32_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef struct {
 uint8_t mbxOwner:1;
 uint8_t mbxHc:1;
 uint8_t mbxReserved:6;
 uint8_t mbxCommand : 8;
 uint16_t mbxStatus : 16;
} MAILBOX_t;
uint32_t f(void) {
       uint32_t mbox;
 mbox = 0;
 ((MAILBOX_t *)&mbox)->mbxCommand = 0x24;
 ((MAILBOX_t *)&mbox)->mbxOwner = 1;
return mbox;
}