* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr40321.c
bloba2f83ed8d84af868b94cd4959b277e3cdcb4ccf5
1 struct X { int flag; int pos; };
2 int foo(struct X *a, struct X *b)
4 while (1)
6 if (a->flag)
7 break;
8 ({ struct X *tmp = a; a = b; b = tmp; });
11 return a->pos + b->pos;