tableau update

This commit is contained in:
Vu Tuan Minh
2025-04-30 14:07:05 +02:00
parent 43ef0b93d3
commit 19c637e323
4 changed files with 24 additions and 6 deletions

View File

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