correction SymTable

This commit is contained in:
Rochas
2025-04-27 16:55:47 +02:00
parent af2e42ab89
commit 0105a3f59e
5 changed files with 157 additions and 98 deletions

View File

@@ -101,7 +101,7 @@ TypeLLVMVisitor<String,String>
@Override
public String visitAllocaLLVM(allocaLLVMImpl e, String h) {
return "alloca" + e.type().accept(this, h);
return "alloca " + e.type().accept(this, h);
}
@Override