Fixed jump address calculation

This commit is contained in:
2024-07-26 19:33:51 +02:00
parent bf80551a15
commit d001e4e55f
3 changed files with 53 additions and 24 deletions

View File

@ -0,0 +1,16 @@
main() {
f(1, 2, 3, 4, 5, 6)
}
f(a, b, c, d, e, f) {
return g(f, e, d, c, b, a)
}
g(a, b, c, d, e, f) {
assert a == 6
assert b == 5
assert c == 4
assert d == 3
assert e == 2
assert f == 1
}

View File

@ -25,6 +25,7 @@ var programs = []struct {
{"nested-calls", "", "", 4},
{"param", "", "", 3},
{"param-multi", "", "", 21},
{"param-order", "", "", 0},
{"reuse", "", "", 3},
{"return", "", "", 6},
{"reassign", "", "", 2},