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
/
functions
/
call-with-args.c
blob
1d7c95a5ca22bb603ffb949db32ed740986da905
1
/* Test function calls with arguments and while loops */
2
3
void
f
(
int
x
,
int
n
)
4
{
5
while
(
n
>
0
)
6
{
7
x
=
x
+
n
;
8
n
=
n
-
1
;
9
}
10
}
11
12
f
(
0
,
6
);