aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/950605-1.c
blob: d89a42e49c64ea5f90450a0480b11e68134d76ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
f (c)
    unsigned char c;
{
  if (c != 0xFF)
    abort ();
}

main ()
{
  f (-1);
  exit (0);
}