aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/961122-2.c
blob: 81e404ec4f127bf1c9f584224edd5f0505b49f8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int
f (int a)
{
  return ((a >= 0 && a <= 10) && ! (a >= 0));
}

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