Changed the way jumps are generated to avoid generating jumps to the
[sixpic.git] / tests / control-structures / multi-byte-comparison.c
blob294c1db74a7760bfb99acb4a23bf9a6cc5cbac5b
1 // test for < and > on multiple byte values
3 int16 f(int16 x, int16 y){
4 while (x < 300){
5 x++;
6 y++;
8 while (x > 260){
9 x--;
10 y--;
12 return y;
14 f(0, 0);