repo.or.cz
/
sixpic.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
New version of the assembler, that does better branch generation.
[sixpic.git]
/
tests
/
math
/
inc-dec-exprs.c
blob
d82c3a3004ab3dad012c3a8aa738983aa25061a4
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
;