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