Added more tests, function calls work

Fixed a bunch of bugs in other opcodes, too
This commit is contained in:
Mitchell Plamann
2015-03-28 19:14:10 -04:00
parent 6774610569
commit 9159cf1389
28 changed files with 412 additions and 28 deletions

7
test/sample2.5.c0 Normal file
View File

@@ -0,0 +1,7 @@
int main () {
int i; int sum = 0;
for (i = 15; i <= 122; i++)
sum += i;
assert(sum == 0);
return sum;
}