blob: 13455f422718f64e73401773d4c49cf845ffd700 [file] [log] [blame]
/* 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);
}