summaryrefslogtreecommitdiff
path: root/src/Values.ml
diff options
context:
space:
mode:
authorSon Ho2021-11-25 17:12:56 +0100
committerSon Ho2021-11-25 17:12:56 +0100
commitd546fcc5a1a1e964275d90a3822930b8f04f17ac (patch)
treec5945abd4597e5140e6cc4f0fe6b045185c6d0d4 /src/Values.ml
parenta9995fe949d31e0f53b1e3e26908de8f98972ca5 (diff)
Start working on function calls
Diffstat (limited to 'src/Values.ml')
-rw-r--r--src/Values.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Values.ml b/src/Values.ml
index 5c31feef..2c80cfe9 100644
--- a/src/Values.ml
+++ b/src/Values.ml
@@ -14,7 +14,7 @@ module RegionId = IdGen ()
type var = {
index : VarId.id; (** Unique variable identifier *)
name : string option;
- ty : ety;
+ var_ty : ety;
(** The variable type - erased type, because variables are not used
** in function signatures *)
}