blob: 4979fd328caed0929e3f2a89fe3b1aff368742f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized -w" } */
struct ehci_regs {
char x;
unsigned int port_status[0];
} __attribute__ ((packed));
struct ehci_hcd {
struct ehci_regs *regs;
};
int ehci_hub_control (struct ehci_hcd *ehci, int wIndex)
{
unsigned int *status_reg = &ehci->regs->port_status[wIndex];
return *(volatile unsigned int *)status_reg;
}
/* { dg-final { scan-tree-dump "={v}" "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */
|