* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr58340.c
blobca3ccda0a472a176e70b273fc1d36d513956db23
1 int a, b, c, d;
3 int foo (int x, int y)
5 return y == 0 ? x : 1 % y;
8 int main ()
10 c = 0 || a;
12 for (;;)
13 b = foo (d, c) && 1;
15 return 0;