2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980505-2.c
blobd0d8aa8c6c0a334747c584c2b1ef3f89eb17a825
1 typedef unsigned short Uint16;
2 typedef unsigned int Uint;
4 Uint f ()
6 Uint16 token;
7 Uint count;
8 static Uint16 values[1] = {0x9300};
10 token = values[0];
11 count = token >> 8;
13 return count;
16 int
17 main ()
19 if (f () != 0x93)
20 abort ();
21 exit (0);