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
/
math
/
bitwise.c
blob
92c9fc018280ec45c520c83690a3879127745fca
1
// bitwise operations
2
3
int16 x1
=
#x5335;
4
int16 x
=
x1
&
#x3553;
5
byte y1
=
4
;
6
byte y
=
y1
|
2
;
7
byte z1
=
5
;
8
byte z
=
z1
^
3
;
9
10
// these should be eliminated
11
byte w
=
z
|
0
;
12
byte k
=
y
&
#xff;
13
14
z
;