* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr80422.c
blob2cece6775dd7d883eb43aa5df85603a430bc9951
2 int a, c, f;
3 short b, d, e;
5 int fn1 (int h)
6 {
7 return a > 2 || h > a ? h : h << a;
10 void fn2 ()
12 int j, k;
13 while (1)
15 k = c && b;
16 f &= e > (fn1 (k) && j);
17 if (!d)
18 break;
22 int main ()
24 fn2 ();
25 return 0;