aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/930527-1.c
blob: fef34bf6b7f759ebfe7bfd42133ff129feffb847 (plain)
1
2
3
4
5
6
7
8
9
10
11
f (unsigned char x)
{
  return (0x50 | (x >> 4)) ^ 0xff;
}

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