2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930527-1.c
blobfef34bf6b7f759ebfe7bfd42133ff129feffb847
1 f (unsigned char x)
3 return (0x50 | (x >> 4)) ^ 0xff;
6 main ()
8 if (f (0) != 0xaf)
9 abort ();
10 exit (0);