summaryrefslogtreecommitdiff
path: root/compiler/SymbolicAst.ml
diff options
context:
space:
mode:
authorSon Ho2024-03-08 19:33:08 +0100
committerSon Ho2024-03-08 19:33:08 +0100
commitcd99485fa2493697b2b3775a5cae80bf9bf58a99 (patch)
tree9034141b3dc421c1033b240fedb6f832011d1c8e /compiler/SymbolicAst.ml
parenteb9844a06f3da5ffec989d9e42cc7776d0c026db (diff)
Make progress on fixing the loops
Diffstat (limited to 'compiler/SymbolicAst.ml')
-rw-r--r--compiler/SymbolicAst.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/SymbolicAst.ml b/compiler/SymbolicAst.ml
index 8e8cdec3..e1f0ad38 100644
--- a/compiler/SymbolicAst.ml
+++ b/compiler/SymbolicAst.ml
@@ -215,8 +215,7 @@ and loop = {
input_svalues : symbolic_value list; (** The input symbolic values *)
fresh_svalues : symbolic_value_id_set;
(** The symbolic values introduced by the loop fixed-point *)
- rg_to_given_back_tys :
- ((RegionId.Set.t * ty list) RegionGroupId.Map.t[@opaque]);
+ rg_to_given_back_tys : (ty list RegionGroupId.Map.t[@opaque]);
(** The map from region group ids to the types of the values given back
by the corresponding loop abstractions.
*)