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