The problem seems to be that you can't do tail calls with the C calling convention. For example, let's say a 0-argument function tail calls a 1-argument one: the 1-argument function expects an argument on the stack, so…
The problem seems to be that you can't do tail calls with the C calling convention. For example, let's say a 0-argument function tail calls a 1-argument one: the 1-argument function expects an argument on the stack, so…