Changed the way jumps are generated to avoid generating jumps to the
[sixpic.git] / tests / math / bitwise.c
blob92c9fc018280ec45c520c83690a3879127745fca
1 // bitwise operations
3 int16 x1 = #x5335;
4 int16 x = x1 & #x3553;
5 byte y1 = 4;
6 byte y = y1 | 2;
7 byte z1 = 5;
8 byte z = z1 ^ 3;
10 // these should be eliminated
11 byte w = z | 0;
12 byte k = y & #xff;