While toLLVM fait

This commit is contained in:
Rochas
2025-04-10 21:23:32 +02:00
parent 99b6cbc08a
commit 3a009f7fac
7 changed files with 86 additions and 29 deletions

View File

@@ -44,7 +44,7 @@ public class SymTable {
public int getNewIdLabel(){
int a = this.idLabel;
this.id++;
this.idLabel++;
return a;
}
@@ -62,7 +62,6 @@ public class SymTable {
}
public String getVar(String nomVar){
System.out.println("getVar(" + nomVar +") -------------------------------------------");
return nomVar + this.stackMap.getLast().get(nomVar).id;
}