aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr53519.c
blob: 3adadcb2c0e9d7ffe1d22e1164a38b1c96cc64d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* PR rtl-optimization/53519 */

int a, b, c, d, e;

short int
foo (short int x)
{
  return a == 0 ? x : 0;
}

short int
bar (int x, int y)
{
  return x + y;
}

void
baz (void)
{
  if (!e)
    {
      int f = foo (65535 ^ b);
      if (bar (!6L <= ~f, ~e) == c)
	d = 0;
    }
}