decl_array

This commit is contained in:
Vu Tuan Minh
2025-04-30 16:34:24 +02:00
parent c58d524dd1
commit a918ae8736
5 changed files with 6 additions and 6 deletions

View File

@@ -231,7 +231,7 @@ public class ProgramLLVM {
}
}
public static record ArrayLLVMImp(TypeLLVM type, Integer size) implements TypeLLVM{
public static record ArrayLLVMImp(TypeLLVM type, Expression size) implements TypeLLVM{
public <H,S> S accept(TypeLLVMVisitor<H, S> v, H h) {
return v.visitArrayLLVM(this, h);
}