scanf bon

This commit is contained in:
Vu Tuan Minh
2025-04-30 09:59:44 +02:00
parent 20f6170168
commit d4a9b1f71d
8 changed files with 17 additions and 3 deletions

View File

@@ -224,4 +224,10 @@ public class ProgramLLVM {
return v.visitCharLLVM(this, h);
}
}
public static record PointerLLVMImp(TypeLLVM type) implements TypeLLVM{
public <H, S> S accept(TypeLLVMVisitor<H, S> v, H h) {
return v.visitPointerLLVM(this, h);
}
}
}