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