summaryrefslogtreecommitdiff
path: root/app/IR.hs
diff options
context:
space:
mode:
authorMirek Kratochvil <exa.exa@gmail.com>2022-12-14 19:47:41 +0100
committerMirek Kratochvil <exa.exa@gmail.com>2022-12-14 19:47:41 +0100
commit60ff47250b5064c38b8f4889766696cb4a5683b0 (patch)
treeeddd52364cd1b2fbfd7219061a5ed5b9c846711e /app/IR.hs
parent32f6fe0291e289c88d29710e42da3e6aca47a3fa (diff)
downloadprlg-60ff47250b5064c38b8f4889766696cb4a5683b0.tar.gz
prlg-60ff47250b5064c38b8f4889766696cb4a5683b0.tar.bz2
slight cleanup, metacall
Diffstat (limited to 'app/IR.hs')
-rw-r--r--app/IR.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/IR.hs b/app/IR.hs
index 8507a3e..631cd16 100644
--- a/app/IR.hs
+++ b/app/IR.hs
@@ -16,7 +16,7 @@ data Id =
deriving (Show, Eq, Ord)
data PrlgInt
- = CallI Id [PrlgInt]
+ = CallI Id [PrlgInt] --TODO this should be Int
| LiteralI Int
| VarI Int Int -- VarI localIndex strTableString
| VoidI