aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/960402-1.c
blob: 601a9a3b09135f474c1b50fee8c21079e4a7eeff (plain)
1
2
3
4
5
6
7
8
9
10
11
f (signed long long int x)
{
  return x > 0xFFFFFFFFLL || x < -0x80000000LL;
}

main ()
{
  if (f (0) != 0)
    abort ();
  exit (0);
}