2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 981001-1.c
blobd7cf0dc64b0d7acc6c378987ed486af8a686ae9c
1 unsigned short code = 0x0000;
2 unsigned short low = 0x4000;
3 unsigned short high = 0xb000;
5 int main (void)
7 if (
8 (high & 0x8000) != (low & 0x8000)
9 && ( low & 0x4000) == 0x4000
10 && (high & 0x4000) == 0
13 code ^= 0x4000;
14 low |= 0x4000;
17 exit (0);