aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/961112-1.c
blob: 4b1c31222caf1b8421edf1ab4690c0de67cd3153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
f (x)
{
  if (x != 0 || x == 0)
    return 0;
  return 1;
}

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