1 2 3 4 5 6 7 8 9 10 11
/* PR target/53187 */ void bar (int); void foo (int x, double y, double z) { _Bool t = z >= y; if (!t || x) bar (t ? 1 : 16); }