New version of the assembler, that does better branch generation.
[sixpic.git] / tests / functions / call-with-args.c
blob1d7c95a5ca22bb603ffb949db32ed740986da905
1 /* Test function calls with arguments and while loops */
3 void f(int x, int n)
5 while (n > 0)
7 x = x+n;
8 n = n-1;
12 f(0, 6);