Changed the way jumps are generated to avoid generating jumps to the
[sixpic.git] / tests / math / lshift.c
blob103950801ebec505e9b9c9d6ad3890447ab854ad
1 // shift by literal multiples of 8
2 int16 x = 15;
3 int16 y = x << 8;
4 int32 z = y + 2;
5 z = z << 16;
6 z = z + 259;
7 z;