aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/930916-1.c
blob: 6302614a8c8f3dc83e78c51c3f8fbef21c9d9f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
f (n)
     unsigned n;
{
  if ((int) n >= 0)
    abort ();
}

main ()
{
  unsigned x = ~0;
  f (x);
  exit (0);
}