* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr44946.c
blob7b23012458591a5a50dfc6bac22441f60f0febcc
1 struct A
3 int i;
4 long l;
5 };
7 struct B
9 int i;
12 struct C
14 int i;
15 struct B b;
18 struct B foo (struct A a)
20 struct C *c = (struct C *) &a;
21 return c->b;
23 void bar (struct A a, struct B b)
25 struct C *c = (struct C *) &a;
26 c->b = b;