blob: b57f3ac035356e20cb59180d37d935f1f6b704a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* { dg-do run } */
/* { dg-options "-O2 -fno-inline" } */
struct usb_interface_descriptor {
unsigned short wMaxPacketSize;
char e;
} __attribute__ ((packed));
struct usb_device {
int devnum;
struct usb_interface_descriptor if_desc[2];
};
extern int printf (const char *, ...);
void foo (unsigned short a)
{
printf ("%d\n", a);
}
struct usb_device ndev;
void usb_set_maxpacket(int n)
{
int i;
for(i=0; i<n;i++)
foo((&ndev)->if_desc[i].wMaxPacketSize);
}
int
main()
{
usb_set_maxpacket(2);
return 0;
}
|