aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr56984.c
blob: bd00bee88eec260b75173b4f912e82ccbc6d5925 (plain)
1
2
3
4
5
6
7
8
9
/* PR tree-optimization/56984 */

int
foo (int x)
{
  if ((x >> 31) < -1)
    x++;
  return x;
}