Don't relax function calls

This commit is contained in:
2024-04-12 00:07:46 +02:00
parent ad45de9049
commit c6ef27d809
10 changed files with 55 additions and 16 deletions

10
tests/print_in_loop.eln Normal file
View File

@ -0,0 +1,10 @@
var i: Int;
begin
i := 1;
while i <= 6 do
begin
writei(i);
i := i + 1
end;
end.