Map local variables in IR to their original names

This commit is contained in:
2024-11-12 21:06:38 +01:00
parent 060496fc6e
commit 0f527914b5
7 changed files with 280 additions and 329 deletions

View File

@ -0,0 +1 @@
58

View File

@ -0,0 +1,6 @@
proc main() {
var i: int;
i := 28;
printi(i + 30);
}