aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr53058.c
blob: 90063c5084265b2dfaa82e41e3fcaea78542af0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR tree-optimization/53058 */

int a, b, c;

void
foo ()
{
  c = b >> 16;
  if (c > 32767)
    c = 0;
  a = b;
}