New version of the assembler, that does better branch generation.
[sixpic.git] / tests / math / inc-dec-exprs.c
blobd82c3a3004ab3dad012c3a8aa738983aa25061a4
1 // test to see what happens with inc / dec in expressions
2 byte x; x = 3;
3 byte y; y = 7 + x++;
4 byte z; z = 2 + x--;
5 byte w; w = 1 + x;