diff options
Diffstat (limited to '')
-rw-r--r-- | src/PureMicroPasses.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/PureMicroPasses.ml b/src/PureMicroPasses.ml index 579fcf14..3b91eaa5 100644 --- a/src/PureMicroPasses.ml +++ b/src/PureMicroPasses.ml @@ -22,6 +22,7 @@ let get_expression_min_var_counter (e : expression) : VarId.generator = method zero _ _ = VarId.zero + (* TODO: why 2 parameters??? I don't understand what's going on... *) method plus id0 id1 _ _ = VarId.max (id0 () ()) (id1 () ()) (* Get the maximum *) |