1/* { dg-options "-funroll-loops -ftracer" } */
2int a, b;
3
4int f(void)
5{
6    (a % b) && f();
7    a = (0 || a | (a ? : 1));
8}
9