Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / pr17273.c
blob42d318ef69ff03b1019e6e51d9ad911c2e62191e
1 struct A { int i; };
2 struct B { struct A a; };
4 void f(struct A*, struct A*);
5 #define bool _Bool
7 void bar(bool b)
9 struct B * D1601;
10 struct A D1576;
11 struct A * D1593;
12 struct B * D1592;
13 struct B D1575;
15 D1575 = (struct B){};
17 if (b) D1592 = &D1575; else D1592 = &D1575;
19 D1593 = &D1592->a; // <-- we are prograting &D1575 into here.
20 D1576 = (struct A){};
21 f (D1593, &D1576);