Prevented the generation of some useless moves (that were vestigial
[sixpic.git] / tests / control-structures / multi-byte-comparison.c
blob20703ba0802cc4ac55b8cc43e5d313888ff51f78
1 // test for < and > on multiple byte values
3 int16 f(int16 x){
4 while (x <= 300){
5 x++;
7 while (x >= 256){
8 x--;
10 return x;
12 f(0);