aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr36988.c
blob: 30e86eae9b31af4c9a42a2b89e49955daa976081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
typedef struct {
    unsigned char mbxCommand;
} MAILBOX_t;
void __writel(unsigned int);
void lpfc_sli_brdrestart(void)
{
  volatile unsigned int word0;
  MAILBOX_t *mb;
  mb = (MAILBOX_t *) &word0;
  mb->mbxCommand = 0x1A;
  __writel((*(unsigned int *) mb));
}