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
Added long jumps and calls. PICOBIT can now be assembled.
[sixpic.git]
/
tests
/
misc
/
predefined-values.c
blob
99e166fb8b4702e69e787a4f022cf62113567691
1
// test to see how/if predefined values work
2
3
X
=
3
;
4
int
x
;
x
=
17
;
5
int
y
;
y
=
23
;
6
int
z
;
z
=
x
+
y
;
7
int
w
;
w
=
y
-
x
+
X
;
8
// ok, it seems register allocation allocates around predefined values, good