annotate gcc/testsuite/gcc.c-torture/compile/pr36988.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 typedef struct {
kono
parents:
diff changeset
2 unsigned char mbxCommand;
kono
parents:
diff changeset
3 } MAILBOX_t;
kono
parents:
diff changeset
4 void lpfc_sli_brdrestart(void)
kono
parents:
diff changeset
5 {
kono
parents:
diff changeset
6 volatile unsigned int word0;
kono
parents:
diff changeset
7 MAILBOX_t *mb;
kono
parents:
diff changeset
8 mb = (MAILBOX_t *) &word0;
kono
parents:
diff changeset
9 mb->mbxCommand = 0x1A;
kono
parents:
diff changeset
10 __writel((*(unsigned int *) mb));
kono
parents:
diff changeset
11 }