aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr53187.c
blob: 13455f422718f64e73401773d4c49cf845ffd700 (plain)
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);
}