Switched an Int to Integer.

This commit is contained in:
Samuel Hammersberg 2023-03-08 10:22:21 +01:00
parent 7cf6f30835
commit bff75bb00b
2 changed files with 45 additions and 16 deletions

View file

@ -30,7 +30,7 @@ data LLVMType
| Ptr
| Ref LLVMType
| Function LLVMType [LLVMType]
| Array Int LLVMType
| Array Integer LLVMType
| CustomType Ident
instance Show LLVMType where