blob: 1e8f728ab4438415067610fae652ea79bc6d5a60 (
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
41
42
43
44
45
46
47
48
49
50
51
|
extern void abort (void);
struct A
{
struct A *a;
};
struct B
{
struct A *b;
};
__attribute__((noinline))
struct A *
foo (struct A *x)
{
asm volatile ("" : : "g" (x) : "memory");
return x;
}
__attribute__((noinline))
void
bar (struct B *w, struct A *x, struct A *y, struct A *z)
{
struct A **c;
c = &w->b;
*c = foo (x);
while (*c)
c = &(*c)->a;
*c = foo (y);
while (*c)
c = &(*c)->a;
*c = foo (z);
}
struct B d;
struct A e, f, g;
int
main (void)
{
f.a = &g;
bar (&d, &e, &f, 0);
if (d.b == 0
|| d.b->a == 0
|| d.b->a->a == 0
|| d.b->a->a->a != 0)
abort ();
return 0;
}
|