* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr79089.c
blob523798824b6d3ebe8d541d60359fa6392f83b9f3
1 /* PR c/79089 */
3 struct S { int b; };
4 struct T { struct S c; } a;
5 int d;
6 struct S e;
8 void
9 foo ()
11 e = ({ d++; a.c = (struct S) {}; });